Revisions

gist: 155290 Download_button fork
public
Public Clone URL: git://gist.github.com/155290.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
Target IE6 and IE7 with only 1 extra character in your CSS
http://briancray.com/2009/04/16/target-ie6-and-ie7-with-only-1-extra-character-in-your-css/
 
#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 */
}