I have an old ASP web application,which is riddled with CSS expressions.
They appear in the CSS file:
#tabtreeDiv
{
position:absolute;
top:expression((imageOffset + 23) + 'px');
left:0px;
width:100%;
height:expression((top.document.body.clientHeight - 49 - imageOffset) + 'px');
clip:auto;
overflow:hidden;
background-color:#FFFAE3;
}
As 'expression' is not supported in IE10 and above versions, Does anyone have a suggestion? Any alternative for the same?