Skip to content

Instantly share code, notes, and snippets.

@Nadeeshyama
Last active January 24, 2021 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nadeeshyama/3942417 to your computer and use it in GitHub Desktop.
Save Nadeeshyama/3942417 to your computer and use it in GitHub Desktop.
[IE Hacks] Internet Explorer 5 - 8 hacks #IE #Hacks
/**
* IE5.x
*/
property/**/:/**/value;
/**
* IE6 and below
*/
_property: value;
-property: value;
/**
* IE7 and below
*/
*property: value !ie;
/* or */
*property: value !important;
a:link:visited: {} /* selects an anchor in IE7 and below */
/**
* IE8 and below
*/
property: attribute\9;
Ex: color: blue\9;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment