I have a page that renders ok, in FF (3x, 4x), Chrome, IE (6, 7, 8).
When tested on IE9 the texts are wider. Investigating the problem it appears that the text is actu
I have always found that the most useful way to set font size across browsers is using em not px values.
I tend to set up the base point in the body tag in CSS:
font-size: 62.5%
Then whenever I wish to set a font size I use an em value such as:
font-size: 1.1em;
This equates to 11px. The advantage I have found is that it renders more consistently across browsers and also resizes better using the browser resize controls.
Give this a try - I think it should solve your problem.
Thanks nathj07