我有两个并排的街区。一种尺寸是固定的,90px
而另一种则不是,我希望另一种能够将自身扩展到容器的其余部分,因为容器的尺寸会发生变化。
这是显示问题的推荐:http: //jsfiddle.net/L6CSG/
HTML
<div class="container">
<span class="left"></span>
<span class="right"></span>
</div>
CSS
.left, .right {
height: 30px;
display: inline-block;
margin: 0px;
float: left;
}
.left {
background: green;
width: 90px;
}
.right {
background: blue;
width: 100%; // How can I make it fit the rest of the container?
}
.container {
width: 400px; // This value is NOT STATIC
}