global text attributes in CSS

upside

New Member
Where is the best place to put global text attributes in CSS?

Say if you know you want all your text to have a line height of 175%, would you put this in the * reset element or what is the highest element that text properties inherit from? body?

G
 

Phreaddee

Super Moderator
Staff member
Code:
body {
font-family:arial, helvetica, sans-serif;
font-size:62.5%;
line-height:1.6em;
}
 
Top