我在 div 中有这样的动态数据:http: //jsfiddle.net/rvWzr/
<div class="container">
<div style="width:200px;height:100px;">1</div>
<div style="width:200px;height:300px;">2</div>
<div style="width:200px;height:140px;">3</div>
<div style="width:200px;height:210px;">4</div>
<div style="width:200px;height:140px;">5</div>
<div style="width:200px;height:120px;">6</div>
</div>
.container div{
display:inline-block;
border:1px solid black;
margin:0px 0px 20px 20px;
}
在我的屏幕上,它看起来像这样:
但我希望它看起来像这样,以免浪费空间:
我怎样才能做到这一点?有没有像“float:left top;”这样的东西?