Sunday, December 9, 2012

Target IE6 and IE7 with only 1 extra character in your CSS


I got it just now while googling

#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 */
}