Created
September 9, 2013 07:43
-
-
Save vdchristelle/6492564 to your computer and use it in GitHub Desktop.
Hack characters for IE
Targetting the different IE versions Uniquely with 4 Characters
This file contains hidden or 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
| /** | |
| *Hacks for IE | |
| * | |
| */ | |
| /****** Targetting the different IE versions Uniquely with 4 Characters *********/ | |
| body { | |
| color: red; /* all browsers, of course */ | |
| color : green\9; /* IE8 and below */ | |
| *color : yellow; /* IE7 and below */ | |
| _color : orange; /* IE6 */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment