To put it simply, this is a technique used to target specific CSS for different versions of Internet Explorer. Some may refer to it as a CSS Hack.
#div {
*zoom: 1; /*This code only affects IE7 and earlier versions*/
zoom : 1;
display: inline;
*display: inline; /*This code only affects IE7 and earlier versions*/
}
This CSS will only be applied to IE7 and earlier versions. It's a workaround that allows us to customize styles for IE7 and below.
Here's how you can target IE6, IE7, and IE8 uniquely:
#div{
color: red; /*applies to all browsers*/
color : green\9; /*applies to IE8 and earlier*/
*color : yellow; /*applies to IE7 and earlier*/
_color : orange; /*applies to IE6*/
}
CLICK HERE if you're interested in learning more about browser-specific CSS.