溢出:ie8

时间:2016-02-24 19:14:57

标签: html css internet-explorer-8 scrollbar overflow

我面临以下情况的问题:

当我为IE8设置最大高度和溢出时,水平滚动条采用最大高度的高度,即使内容不超过最大高度。

例如:如果您在chrome中测试以下链接,您可以看到它正常工作 JSbin

如果你在ie8中测试相同的代码它不会工作,因为IE8 jsbin不会工作所以你需要在.html文件中使用它

CSS

.container {
  overflow:auto;
  max-width:200px;
  max-height:200px;
  border:1px solid red;
}

.content {
  width:300px;
  height:100px;
  border:1px solid blue;
}

HTML

<div class="container">
  <div class="content"></div>
</div>

我想知道这是否可能是重复的,因为在ie8问题上有很多关于溢出的帖子,但我找不到符合我情景的任何帖子。

在Chrome中: enter image description here

在IE8中: enter image description here

0 个答案:

没有答案