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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

font size scope 1

Status
Not open for further replies.

RobBroekhuis

Technical User
Oct 15, 2001
1,971
US
What is the scope of a <font size=xxx> directive? I have just one such directive, at the top of my page, and it persists for a while, through several headers, then seems to revert to a smaller (default) font size, apparently at the start of a table. Can I set the font size to be the same for the entire document?


Rob
[flowerface]
 
Code:
body
{
font-size: 14px
}
The above code should work for the whole document but if it doesn't then try this for the tables
Code:
td
{
font-size: 14px
}
Hope that helps
Jammer1221
 
I had to apply it to both body and td. Also, I had to figure out (newbie as I am) to put the above statement inside <style> directives. I'm learning...


Rob
[flowerface]
 
Ops sorry for not putting the style tags in...Thats weird that you had to put both the style's in...but any ways it works, and thanks for the star
jammer1221
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top