Too many <font> tags!

liunx

Guest
I'm sure I've seen this here before, but can't find it doing a search, so...<br />
<br />
Creating a form. Using tables. How do I apply text formatting across the whole table without using a billion <font> tags? I'm really only concerned with designating the font family.<br />
<br />
Is this a CSS question?<br />
<br />
<br />
TIA<br />
Aronya1<!--content-->yes it is CSS, but: define classes i.e.<br />
td with class='atd' in a table with id='sometable'<br />
CSS #sometable td .atd {font-family:Arial, Helvetica, sans-serif;}<br />
td with class='btd' in a table with id='sometable'<br />
CSS #sometable td .btd {font-family:"Courier New", Courier, monospace;}<!--content-->ah yes i remember making one of my sites i had that problem it is really annoying in the end i had to use something like what FANG posted<!--content-->Thanks Fang,<br />
<br />
That looks like just what I need.<br />
<br />
<br />
96,<br />
<br />
Exactly. I'm using DW to create the site, but tweaking things by hand, and when you start looking at the table's code with all the <font> tags for every freakin' line, it doesn't take long for the eyes to cross...<!--content-->yeah it did make my eyes go funny to and there not in the best of condition anyway lol :(<!--content-->
 
Back
Top