Link to home
Start Free TrialLog in
Avatar of Peter Nordberg
Peter NordbergFlag for Sweden

asked on

Different font rendering in IE8 and Firefox with same CSS

Hi,

I have this question if someqne knows why a usual css style renders differently in Ie8 and Firefox. The style is very easy.
body
{
    font-family:verdana;
    font-size:8pt;
    font-weight:normal;
}

In Firefox it is rendering correctly but not in IE8, all gets bold there. How can I fix this? I've checked several computors with IE8 and it's the same.
You can see what I mean in the attached images and also on this link:
http://www.skippersmart.se/productGroup.aspx?pgID=1

Thanks for your help!

Peter
ASKER CERTIFIED SOLUTION
Avatar of Andreaspisc
Andreaspisc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi peternordberg,

Try this

body {
      font-family:verdana;
      font-size:8pt;
      font-weight:normal;
}

Sure it will help...