Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created February 23, 2012 09:53
Show Gist options
  • Save jensgro/1892010 to your computer and use it in GitHub Desktop.
Save jensgro/1892010 to your computer and use it in GitHub Desktop.
hide styles with CSS from oldIE
@media only screen {
/* rule excludes IE < 9 */
}
@media only screen(min-width: 1px) {
/* rule excludes IE < 9 */
}
@media all and (min-width:0) {
/* rule excludes IE < 9 */
}
:root .foo {
/* selector excludes IE < 9 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment