我在ie9上有一个非常奇怪的问题,其中一个具有最大高度的div(使用calc()和vh设置并且自动溢出不会滚动。
您可以点击此图片查看发生的情况(如果此处未加载GIF):
我的HTML:
<div class="modal">
<div class="modal__title">Modal Title</div>
<div class="modal__body">
<p>When I am too tall, I should scroll on ie9, but I don't.</p>
</div>
<div class="modal__footer">Footer here</div>
</div>
相关CSS:
.modal {
min-width: 500px;
max-width: 800px;
border-radius: 4px;
max-height: 65vh;
overflow: hidden;
background-color: white;
position: fixed;
top: 15vh;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.modal__body {
max-height: calc(65vh - 120px)); // 120 is the combined height of the header and footer
overflow-y: auto;
}
我不明白为什么会这样,因为ie9支持vh,calc()和max-height。有什么想法吗?
JSFiddle演示:https://jsfiddle.net/sbgg5bja/3/
答案 0 :(得分:15)
在合并position: fixed
和transform: translate
时,这似乎是一个重绘问题。
以下是2种可能的修复方法:
overflow-y:scroll
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
如果这些都没有,您可以放弃transform: translate
并使用例如display: table
来居中它。