I see that the css property zoom: 1
is often used in stylesheets.
For example twitter bootstrap uses it in its fluid layout:
.row-fluid {
width: 100%;
*zoom: 1;
}
I know that it is primarily used for IE layout issues...
What is it actually used for and why? Is it only necessary to use it for fluid layouts?