我的应用程序在 IE8 中运行良好,现在我们正在迁移到 IE11。请在下面找到 div css
.contentDiv{
height:expression(document.body.clientHeight - contentDiv.getBoundingClientRect().top);
overflow-y:scroll;
}
现在css表达式已经贬值了。您能否建议我如何计算 IE11 的动态 div 宽度高度,并且它也应该在 IE8 中工作?
我的应用程序在 IE8 中运行良好,现在我们正在迁移到 IE11。请在下面找到 div css
.contentDiv{
height:expression(document.body.clientHeight - contentDiv.getBoundingClientRect().top);
overflow-y:scroll;
}
现在css表达式已经贬值了。您能否建议我如何计算 IE11 的动态 div 宽度高度,并且它也应该在 IE8 中工作?