See for example “Meaning of relative weights” here:
https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight
Johannesburg Website Design,
Thoman
tunne unnu
]]>font-weight: normal;
is working.
]]>I don’t recommend that, but you’d have to use a browser hack:
I don’t know off hand if there’s one you can use for what you want, but you can search that site. You could also use UA detection, but that’s even worse.
Best choice: Use a weight that looks pretty good everywhere, even if not perfect.
]]>font-weight: 200
; for Safari and for other Browsers font-weight:400;
Is it possible to do that? Thanks!
]]>No, not necessarily. “bolder” is not an absolute weight, but is relative to the existing font’s boldness. So it could map to 700, if the font starts at a regular weight. It’s a little confusing, but just realize it’s not relative to the “bold” keyword, it’s relative to the boldness (or lightness) of the font, whatever that currently is.
]]>