Last active
January 24, 2021 12:41
-
-
Save Nadeeshyama/3942417 to your computer and use it in GitHub Desktop.
[IE Hacks] Internet Explorer 5 - 8 hacks #IE #Hacks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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