Closed serapath closed 9 years ago
Ah, just read "http://crocodillon.com/blog/non-blocking-web-fonts-using-localstorage", so everything beside IE8 is supported? Thats fine. By the way, awesome library :-)
Hey, browser support is basically limited by whether there is WOFF support or not. So not just IE8- is left out, sadly. http://caniuse.com/#feat=woff
Thanks :smile:
I'm pretty new to care so much about fonts. After a long search, I finally found
font-store
and webfont-dl They booth seem to roughly do the same thing as such, but while yours is creating ajson
file, the other one is downloading fonts and generating acss file
.I like the
json
approach, because it enables me:font-store "http://fonts.googleapis.com/css?family=Dosis"
and then...then i use
browserify index.js > bundle.j
and include it in myindex.html
like:<script src="bundle.js"></script>
Question
What is the browser support of the generated css, because there are some javascript libraries that generate a shitload of different @font-face variations for all kinds of scenarios and maybe they might get even browser prefixed or i dont know what :-) Would be nice to know.