Skip to content

Instantly share code, notes, and snippets.

@vedranjaic
Created May 26, 2013 17:35
Show Gist options
  • Save vedranjaic/5653450 to your computer and use it in GitHub Desktop.
Save vedranjaic/5653450 to your computer and use it in GitHub Desktop.
css: IE CSS Hacks
/*IE10 and above */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10+ specific styles go here */
}
/* IE8 and below */
body {
color: red; /* all browsers, of course */
color: green1; /* IE8 and below */
}
/* IE7 and below */
body {
color: red; /* all browsers, of course */
color: green\9; /* IE8 and below */
*color: yellow; /* IE7 and below */
}
/* IE6 */
body {
color: red; /* all browsers, of course */
color: green\9; /* IE8 and below */
*color: yellow; /* IE7 and below */
_color: orange; /* IE6 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment