sometimes web-fonts don’t load (for instance if hosted on google fonts)
and fallbacks may need special treatment, because they can be consistently different from other specified fonts
for instance:
font-family:'webfontname', 'winfont', 'linuxfont', sans-serif;
now the webfont should have
letter-spacing:2px;
but winfont should have
letter-spacing:-4px;
how can I manage this?
thank you
You’re using Google Web Fonts, so I suggest using the WebFont Loader, which will allow you to, for example, apply different CSS depending on whether the font is loading or loaded.
Here’s a minimal example based on the code from my second link:
http://jsbin.com/izadif/ (spam refresh to see it)