Created
December 30, 2013 15:14
-
-
Save CarlRevell/8183230 to your computer and use it in GitHub Desktop.
Old but sometimes useful single character CSS hacks for targeting IE6 and IE7, typically when testing some bugfix for these old browsers.
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
#myelement { | |
color: #999; /* shows in all browsers */ | |
*color: #999; /* notice the * before the property - shows in IE7 and below */ | |
_color: #999; /* notice the _ before the property - shows in IE6 and below */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment