我想要两个并排的 div 并为一个 div 定义宽度。
然后,另一个 div 将自动适应父容器。我怎么做?
HTML:
<div class="parent">
<div class="first"></div>
<div class="last"></div>
</div>
CSS:
.parent {
width: 100%;
}
.parent .first {
width: 300px;
float: left;
background-color: red;
}
.parent .last {
width: auto;
float: right;
background-color: blue;
}
谢谢。