我在父div中有3个浮动div。第一个和最后一个div有一些固定的高度(例如:100px和150px)。对于第二个div,我将高度设置为100%。但是随着父母身高的增加,第二个div的高度并没有增加。
HTML
<div class="main">
<div class="one">1</div>
<div class="two"></div>
<div class="three">3</div>
<br style="clear: both" />
</div>
CSS
body, html {
height: 100%;
}
.main {
width: 500px;
}
.one, .two, .three {
float: left;
width: 150px;
border: 1px solid #CCC;
margin-left: 5px;
}
.one {
height: 100px;
}
.two {
height: 100%;
}
.three {
height: 150px;
}
答案 0 :(得分:1)