Skip to content

Instantly share code, notes, and snippets.

@ariesjia
Created September 4, 2013 10:38
Show Gist options
  • Save ariesjia/6435362 to your computer and use it in GitHub Desktop.
Save ariesjia/6435362 to your computer and use it in GitHub Desktop.
IE6 7 8 9 10 hack
To target IE 6 and 7
@media screen\9 {
body { background: red; }
}
To target IE 6, 7 and 8
@media \0screen\,screen\9 {
body { background: green; }
}
To target IE 8
@media \0screen {
body { background: blue; }
}
To target IE 8, 9 and 10
@media screen\0 {
body { background: orange; }
}
To target IE 9 and 10
@media screen and (min-width:0\0) {
body { background: yellow; }
}
To target IE 10
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
body { background: yellow; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment