10

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

1 回答 1

17

当某些东西在其他浏览器中有效但在 IE9 中无效时,可能是您的标题不正确。检查这个:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
于 2012-04-24T20:45:34.990 回答