小编典典

IE9浮动溢出:隐藏且表格宽度100%无法正确显示

html

我正在尝试在页面右侧浮动一个容器。在它的左侧,有很多表格需要100%的宽度。我希望它们一直延伸到右侧的浮动元素。当右边的那个元素结束时,我希望表格扩展到页面的末尾。

这在除IE之外的所有浏览器中都很好用。在IE中,所有表格都显示在右侧浮动元素下方。我知道IE中隐藏了溢出的解决方法,但我无法使其正常工作。

下面的代码。

<head>
<style type="text/css">
.container{margin:0 auto; min-width:1000px; max-width:1200px;}
.sidebar{float:right;width:300px;margin-left:5px;}
.tholder{overflow:hidden;}
</style>
</head>
<div class="container">
<div class="sidebar">
<img src="dsfd.jpg" heigh="600" width="295">
</div>
<div class="tholder">
<Table width="100%" border="1"><tr><td>Text</td></tr></table>
</div>
<div class="tholder">
<Table width="100%" border="1"><tr><td>Test goes here</td></tr></table>
</div>
<div class="tholder">
<Table width="100%" border="1"><tr><td>text</td></tr></table>
</div>
</div>

阅读 328

收藏
2020-05-10

共1个答案

小编典典

如果某些内容在其他浏览器中有效,但在IE9中不起作用,则很可能是标题不正确。检查一下:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
2020-05-10