在过去的一个小时里,这一直困扰着我,无法弄清楚。这是一个测试用例,可以更好地理解场景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%。问题是新内容将被动态添加,并且浮动容器不会像我预期的那样扩展。
任何帮助表示赞赏。