Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created April 1, 2016 09:31
Show Gist options
  • Select an option

  • Save leohxj/912586cd9e4d1efa8a2b625dd8218678 to your computer and use it in GitHub Desktop.

Select an option

Save leohxj/912586cd9e4d1efa8a2b625dd8218678 to your computer and use it in GitHub Desktop.
IE Hacks
#hack{
color:red; /* All browsers */
color:red !important;/* All browsers but IE6 */
_color:red; /* Only works in IE6 */
*color:red; /* IE6, IE7 */
+color:red;/* Only works in IE7*/
*+color:red; /* Only works in IE7 */
color:red\9; /* IE6, IE7, IE8, IE9 */
color:red\0; /* IE8, IE9 */
color:red\9\0;/*Only works in IE9*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment