I've the following code:
p{
font-family: Helvetica, Arial, sans-serif;
font-weight:100;}
It works on Mac OSX on Safari and Firefox, but the font-weight don't work on Windows in any browser. Why? How can I solve that?
|
|
|
From the Mozilla Developer Network CSS docs for font-weight:
You don't see a lighter weight on Windows because there isn't one for Arial, so it falls back on a normal weight instead. |
|||||
|
|
According to a comment at the Sitepoint CSS reference page for font-weight there are at least IE issues on Windows:
Now that comment is a 2 1/2 years old so it may not be applicable today. I would recommend trying to set the value to "lighter" and see what happens. |
|||
|
|