Skip to content

Instantly share code, notes, and snippets.

@panych
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panych/9563668 to your computer and use it in GitHub Desktop.
Save panych/9563668 to your computer and use it in GitHub Desktop.
Separate css-files with fonts for modern browsers and for IE8-
doctype html
html
head
meta( charset='utf-8' )
meta( name='viewport' content='initial-scale=1' )
<!--[if gt IE 8]><!-->
= stylesheet_link_tag 'fonts-woff', :media => 'screen'
<!--<![endif]--><!--[if lte IE 8]>
= stylesheet_link_tag 'fonts-eot', :media => 'screen'
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="styles/fonts.css" media="screen">
<!--<![endif]--><!--[if lte IE 8]>
<link rel="stylesheet" href="styles/fonts-ie.css" media="screen">
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment