IE9浮动溢出:隐藏和表宽度100%未正确显示

时间:2012-04-24 20:37:07

标签: html css internet-explorer-9 css-float html-table

我正在尝试将容器浮动到页面的右侧。在它的左边是很多表,我需要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>

1 个答案:

答案 0 :(得分:17)

当某些内容在其他浏览器中有效但在IE9中无效时,可能是您的标题不正确。检查一下:

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