In simple words, this is the key to target css in different versions of IE browser. He can also be called a CSS hacker.
#div {
*zoom: 1;
zoom : 1;
display: inline;
*display: inline;
}
Means that this CSS only works on IE7 and below. This is a kind of hack that we can use to apply CSS on IE7 and below.
Here's how to customize IE6, IE7 and IE8 uniquely
#div{
color: red;
color : green\9;
*color : yellow;
_color : orange;
}
CLICK HERE if you want to know more about CSS browser.
source
share