Created
March 19, 2014 02:32
-
-
Save esteinborn/9634484 to your computer and use it in GitHub Desktop.
Bullet Proof @font-face syntax (from Stubbornella: https://github.com/stubbornella/csslint/wiki/Bulletproof-font-face)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@font-face { | |
font-family: 'MyFontFamily'; | |
src: url('myfont-webfont.eot?#iefix') format('embedded-opentype'), | |
url('myfont-webfont.woff') format('woff'), | |
url('myfont-webfont.ttf') format('truetype'), | |
url('myfont-webfont.svg#svgFontName') format('svg'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment