Skip to content

Instantly share code, notes, and snippets.

@bjankord
Created December 8, 2012 13:39
Show Gist options
  • Save bjankord/4240300 to your computer and use it in GitHub Desktop.
Save bjankord/4240300 to your computer and use it in GitHub Desktop.
IE conditional comments CSS
.foo {
color: black;
}
.lte-ie8 .foo {
color: green; /* IE8 and older */
*color: blue; /* IE7 and older */
_color: red; /* IE6 and older */
}
<!-- Combining conditional comments and CSS hacks from http://mathiasbynens.be/notes/safe-css-hacks -->
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment