Clear: expression?

Junior

Well-known member
Code:
.concealed a,
.cloaked,
.cloaked a
{    text-decoration: inherit !important;
    color: inherit !important;
    *clear:expression( style.color = parentNode.currentStyle.color, style.clear = "none", 0);
I'm not to keen on the expression part of css, so I'm curious what is doing here.
 
Code:
.concealed a,
.cloaked,
.cloaked a
{    text-decoration: inherit !important;
    color: inherit !important;
    *clear:expression( style.color = parentNode.currentStyle.color, style.clear = "none", 0);
I'm not to keen on the expression part of css, so I'm curious what is doing here.
If I remember correctly, its to make things work correctly with IE6/7.
 
Top Bottom