古いバージョンの 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で動作させる方法とこれを行う別の方法は?
コードをどのように変更しますか?