最大高度和溢出不在ie9上滚动

时间:2016-03-23 10:03:48

标签: html css internet-explorer-9

我在ie9上有一个非常奇怪的问题,其中一个具有最大高度的div(使用calc()和vh设置并且自动溢出不会滚动。

您可以点击此图片查看发生的情况(如果此处未加载GIF):

enter image description here

我的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/

1 个答案:

答案 0 :(得分:15)

在合并position: fixedtransform: translate时,这似乎是一个重绘问题。

以下是2种可能的修复方法:

  • 设置overflow属性以滚动。即,overflow-y:scroll
  • -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";

Src:How to solve IE9 scrolling repaint issue with fixed-position parent that has -ms-transform:translate?

如果这些都没有,您可以放弃transform: translate并使用例如display: table来居中它。