Skip to content

Instantly share code, notes, and snippets.

@danilowm
Created March 8, 2012 01:28
Show Gist options
  • Select an option

  • Save danilowm/1997855 to your computer and use it in GitHub Desktop.

Select an option

Save danilowm/1997855 to your computer and use it in GitHub Desktop.
CSS Hack Internet Explorer
#divID {
color: green;
}
#divID {
_color: red; /* IE6 */
}
#divID {
*color: yellow; /* IE7 */
}
#divID {
color: blue\0/; /* IE8 */
}
:root #divID { color: brown \0/IE9; } /* IE9 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment