What is the CSS function for all the text on the site? For example, "A:link" will change all the links on the site. What's the equivalent to text?
You can change all the text using the body selector for example: body{ color:#666666; font-size:1.2em; } Code (markup):
I would rather use something like this to avoid text formatting inconsistences in some browsers.. body, div, p, td, span, a, form, input, textarea { color:#666666; font-size:1.2em; } Code (markup):
Clive: And that doesn't cause text inside of a p tag inside of a div tag to appear larger than text inside of a p tag that is not within a div tag?
Oops, I did not pay attention to the way font size is defined. I quoted the code sample to highlight the body, div, p, td, span, a, form, input, textarea { ... } part. Set fixed size instead, and it should work.