setting the font face,size using the td style property

liunx

Guest
how do i set the font face,size using the td style property?<!--content-->The below will affect all the TDs<style type="text/css"><br />
td {<br />
font-family: Verdana, Arial, sans-serif;<br />
}<!--content-->Do you want to define it for all of your <td> tags? Here's how.<br />
<br />
In your <head> tag.<br />
<br />
<style type="text/css"><br />
<!--<br />
td { font-family:Arial, Helvetica, Verdana, sans-serif; font-size:100%; }<br />
--><br />
</style><br />
<br />
<!-- m --><a class="postlink" href="http://www.w3schools.com/css/css_reference.asp#font">http://www.w3schools.com/css/css_reference.asp#font</a><!-- m --><!--content-->Spufi - you've missed a few characters out in your font names. It might be a good idea to edit them in case someone copies and pastes...<!--content-->What's funny is that I originally grabbed that code from a well known quality source in terms of CSS. Let's hope they fixed their's by now too. :p<!--content-->LOL - I wonder who that was..<!--content-->
 
Back
Top