View Full Version : Table properties


Jrfan888
07-08-2003, 08:28 PM
Instead of adding a <font face="fontname" size="size"> and a color code for each cell is there some sort of style tag you can add to the table to apply it to all cells??
Thanks

Dude128
07-08-2003, 08:32 PM
you could certainly use CSS. just add a td section to an existing style sheet or create a new one (http://www.lissaexplains.com/css.shtml)

td {
all your attributes here
}

Jrfan888
07-08-2003, 09:24 PM
Thank you :)