3

我正在整理的网站有问题。我有一个简单的 div 布局。如下:

<body>
    <div id="Container">
        <div id="Logo"></div>

        <div id="Banner">
            <div id="Nav"></div>
        </div>
        <div id="Content">
        </div>

        <div id="footer">Footer</div>
    </div>
</body>​

我的CSS如下:

@charset "utf-8";
/* CSS Document */


html, body {
    height:100%;
    padding:0;
    margin:0;
    background-image:url(../layout.img/background_gradient.gif);
    background-repeat:repeat-x;
}

#Container {
    height:100%;
    width:950px;
    margin:auto;

    background-color:#FFFFFF;
    border-left:1px solid #333333;
    border-right:1px solid #333333;
}

#Logo {
    width:160px;
    height:160px;
    float:right;
}

#Banner {
    width:100%;
    height:160px;
}

#Nav {
    width:550px;
    height:33px;
    position:relative;
    top:100px;
    left:50px;
}

#Content {
    clear:both;
}

最后可以在这里看到结果:

http://jsfiddle.net/mczMS/

正如您所看到的,当您向下滚动页面时,“容器”div 并没有随着内容延伸。我知道这可能是一件非常简单的事情,但我今天的脑力不足。哈哈。

4

2 回答 2

8

尝试添加:

#container { min-height: 100%; }

身高100%后。您可能还想尝试:

#container { overflow: auto; }
于 2009-11-19T03:58:15.307 回答
4

如果从容器中删除 height:100% ,它将拉伸以适合其内容。

于 2009-11-19T03:59:41.217 回答