我们使用旧版本的 IE7 开发了一个应用程序。
并且代码包含“CSS 表达式”,但这在 IE11 中不起作用。
示例代码:
div#GridViewContainer
{
position: relative !important;
width: 1000px !important;
overflow: auto !important;
}
_:-ms-fullscreen, :root .staticHeader
{
position: relative !important;
top: expression(this.offsetParent.scrollTop);
z-index: 99 !important;
}
_:-ms-fullscreen, :root .StaticColumn
{
z-index: 90 !important;
border: 1px solid gray !important;
position: relative !important;
left: expression(document.getElementById("GridViewContainer").scrollLeft);
}
如何在 IE11 和其他方法中工作?
如何更改我的代码?