Created
December 21, 2012 17:29
-
-
Save jakearchibald/4354269 to your computer and use it in GitHub Desktop.
This file contains 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
<style> | |
@font-face { | |
font-family: 'myfont'; | |
src: url('font.woff'); | |
unicode-range: U+61-7A; /* lowercase a-z */ | |
} | |
p { | |
font-family: myfont, sans-serif; | |
} | |
</style> | |
<p>HI THERE</p> | |
<!-- font.woff should not download, but it does in WebKit, Firefox, Opera, IE10 --> | |
<!-- Pretty sure WebKit used to do the right thing, but regressed --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment