我在主 div 中有 4 个 div。全部都向左浮动,最后一个留下一个空白空间。我想用最后一个 div(全宽)填充那个空间。
<div id="container">
<div class="col1">
</div>
<div class="col2">
</div>
<div class="col3">
</div>
<div class="col4">
</div>
</div>
#container {
width: 600px;
height: 200px;
background:yellow;
}
.col1 {
float:left;
width:90px;
height: 200px;
background:red;
}
.col2 {
float:left;
width:130px;
background:blue;
height: 200px;
}
.col3 {
float:left;
width:130px;
background:red;
height: 200px;
}
.col4 {
float:left;
width:130px;
background:blue;
height: 200px;
}