Created
December 8, 2012 13:39
-
-
Save bjankord/4240300 to your computer and use it in GitHub Desktop.
IE conditional comments CSS
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
.foo { | |
color: black; | |
} | |
.lte-ie8 .foo { | |
color: green; /* IE8 and older */ | |
*color: blue; /* IE7 and older */ | |
_color: red; /* IE6 and older */ | |
} |
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
<!-- 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