an interesting form to generate typesetting css:
http://www.csstypeset.comThis goes nicely with an blog post I read a few weeks back:
http://clagnut.com/blog/348/The basic jist is that if you use the CSS rule:
body
{
font-size: 62.5%;
}
then:
10px = 1.0em
12px = 1.2em
14px = 1.4em
USing "em" font sizes increase the scalabiltiy of the text when you enlarge it and
IE/Win will not allow readers to resize text that has been sized in pixels. So this gives you pixel level control and yet keep the accesibilty of using em.
For those who don't know an em is a unit of topography relative to the point size of the current font:
ie. if font size was set to 14pt - 1em = 14pt, if the font size was set to 16pt, 1em = 16pt.