<div class="father">
<div class="box first">
一
</div>
<div class="box">
二
</div>
<div class="box">
三
</div>
</div>
.box {
background-color: gray;
width: 100px;
height: 30px;
margin: 10px 10px;
float: left; /* box向左浮动 */
}
.father {
width: 400px;
border-style: solid;
border-width: 2px;
min-height: 30px; /* 设定最小高度,模拟脱离文档流的情况 */
}