Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Objinfo HTML

Status
Not open for further replies.

Julierme

Programmer
Jan 28, 2015
13
0
0
BR
Hi All

I have a objinfo.html table in my code.

JavaScript:
objinfo.html("<br/><table>"+
		    "<tr><th>Número da Carta:</th><td>"+feat.Numero+"</td></tr>"+
		    "<tr><th>Título da Carta:</th><td>"+feat.Titulo+"</td></tr>"+
			"<tr><th>Edição:</th><td>"+feat.Ediciao+"</td></tr>"+
			"<tr><th>Escala:</th><td> 1:"+feat.Escala+"</td></tr>"+
			"<tr><th>Ano:</th><td>"+feat.Ano+"</td></tr>"+
			"<tr><th>Produtos:</th><td>BSB</td><td>TIFF</td><td>PAPEL</td></tr>"+
			"</table>");
I want to set a style: border and column width for the table in objinfo.html. Could someone give me a tip or help to do this table configuration?

Best Regards
 
Just add css classes or inline style declarations.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top