The W3C maintain a page of advice on how to size your fonts in CSS - last updated in April 2010. According to this page the very best way to style fonts is to use the "absolute" font-sizes:
even better, if a base font-size is set for the document, use absolute size ([ xx-small | x-small | small | medium | large | x-large | xx-large ]) or relative size ([ larger | smaller ]) when defining the font size for a particular element within the document.
The spec then defines these font-sizes in a table. As far as I understand this table, small should be 2/3 (66%) the size of medium, and large should be 4/3 (133%).
If I test this out I get rather different results from my interpretation of the ratios specified by the W3C. The results are consistent across latest versions of Chrome, Firefox and IE, but do not tally up with the W3C recommendation. small is 81.25% instead of 66%, and large is 112.5% instead of 133%.
Does this mean that modern browsers are not supporting these standards from the W3C? Is there a new standard that superseded this one that I'm not aware of? Or have I misunderstood the meaning of that table from the W3C?
At the end of the day my question comes down to: Is it still the best practice to use absolute font sizes in CSS? Will it behave consistently across browsers? And ideally I would like to know what standard the modern browsers are following.
emand percentages. Note that html also as a <small> tag which makes everything somewhat more confusing, the only benefit according to the html5 spec is that this could be useful semantically. But i wonder what others have to stay about the css styles x-large as well! – c4urself Jan 4 '12 at 12:32