我的应用程序在IE8中工作正常,现在我们正在迁移到IE11。请找到下面的div css
.contentDiv{
height:expression(document.body.clientHeight - contentDiv.getBoundingClientRect().top);
overflow-y:scroll;
}
Css表达式现已弃用。你能建议我如何计算IE11的动态div宽度高度,它也适用于IE8吗?
答案 0 :(得分:0)
如果您在网站上有jQuery(并且您应该),那么您可以让jQuery快速遍历该类的元素并明确设置高度。
gson.JsonObject
您希望将$(document).ready(function(){
$('.contentDiv').each(function(){
$(this).css('height',$(document).height() - $(this)[0].getBoundingClientRect().top);
});
});
样式定义保留在CSS中。