0

我在网站上还有其他几个页面,使用溢出自动调整高度没有问题。

我注意到的一件事是页面可以在一个 div 上正常工作。不工作的页面有两个或更多的 div,我也用容器尝试过,但我仍然得到垂直和水平滚动条。

<div class="content">
    <div class="container">
        <div class="a">
            <div class="left">List Items</div>
            <div class="right">List Items</div>
        </div>
        <div class="b">
            This div is a FORM.
        </div>
    </div>
</div>
4

2 回答 2

0

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

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
于 2012-06-27T07:13:12.707 回答
0

制作了一个仅限 IE 的样式表并将 .content 更改为溢出:隐藏。还取消了几个类的宽度,以使内容正确地适合其他浏览器。

于 2012-06-29T03:12:44.180 回答