我有一个有 2 个孩子的容器:一个是浮动的并增加了他父母的高度,第二个不是浮动的并填充了其余的宽度。我也想让第二个填充高度。
这是我的问题的一个小提琴:http: //jsfiddle.net/LAesa/
在这个小提琴中,我想让红色 div 填充他父母的 100% 高度。
这里的html:
<div id="container">
<div id="float">
The floating <br/>column
</div>
<div id="fill">
This one fill the rest
</div>
<div class="clearfloat"></div>
</div>
这里的CSS:
#container {
width: 500px;
background-color: yellow;
}
#float {
width: 20%;
float: left;
background-color: green;
}
#fill {
min-height: 100%;
overflow: hidden;
background-color: red;
}
.clearfloat {
clear: both;
}
非常感谢 !