1

在过去的一个小时里,这一直困扰着我,无法弄清楚。这是一个测试用例,可以更好地理解场景http://jsfiddle.net/slash197/RvTe7/1/

CSS

html, body {
    height: 100%;
    margin: 0px; 
    padding: 0px;
}
.header {
    height: 10%;
    background-color: red;
}
.content {
    height: 90%
}
    #side-bar {
        height: 100%;
        width: 30%;
        float: left;
        background-color: blue;
    }
    #content-zone {
        height: 100%;
        width: 70%;
        float: left;
        background-color: yellow;
    }

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
    line-height: 0;
}
.clearfix:after {
    clear: both;
}

HTML

<div class="header">
    <h1>test case</h1>
</div>
<div class="content clearfix">
    <div id="side-bar">menu</div>
    <div id="content-zone">page content <button>add more</button></div>
</div>

我可以成功地将两个浮动元素的初始高度设置为 100%。问题是新内容将被动态添加,并且浮动容器不会像我预期的那样扩展。

任何帮助表示赞赏。

4

3 回答 3

1

尝试这个

添加下面的类#content-zone{ overflow-y:Scroll; }

http://jsfiddle.net/RvTe7/2/

于 2013-07-20T11:40:28.477 回答
1

您可以更改heightmin-height

#content-zone {
    min-height: 100%;
    width: 70%;
    float: left;
    background-color: yellow;
}
于 2013-07-20T11:45:12.673 回答
1

如果对您来说只有黄色框会增长就足够了,那么您可以这样做:

#content-zone {
        min-height: 100%;
        height: auto;
        width: 70%;
        float: left;
        background-color: yellow;
    }

JSFiddle:http: //jsfiddle.net/RvTe7/3/

于 2013-07-20T11:45:46.643 回答