Skip to content

Instantly share code, notes, and snippets.

@yuezk
Last active December 28, 2015 15:39
Show Gist options
  • Save yuezk/7523479 to your computer and use it in GitHub Desktop.
Save yuezk/7523479 to your computer and use it in GitHub Desktop.
font-face的最佳实践
/*http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax*/
@font-face {
font-family: 'Web Font';
src: url('AlexBrush-Regular.eot?#iefix') format('embedded-opentype'), /*IE*/
url('AlexBrush-Regular.woff') format('woff'), /*Chrome, Firefox, Opera, Safari*/
url('AlexBrush-Regular.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
url('AlexBrush-Regular.svg#svgFontName') format('svg'); /*iOS 4.1-*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment