使用下面的片段
<div style="width : 200px;">
<div style="float : left; width : 90px; height : 50px; background-color: blue; ">div 1</div>
<div style="float : left; width : 90px; height : 90px;background-color: red; ">div 2</div>
<div style="float : left; width : 90px; height : 50px;background-color: green; margin-top:-40px; ">div 3</div>
</div>
下面的代码也会做同样的事情。
<div style="width : 200px;">
<div style="float : left; width : 50px; height : 50px; background-color: blue; ">div 1</div>
<div style="float : left; width : 90px; height : 90px;background-color: red;float:right; margin-right:60px;">div 2</div>
<div style="float : left; width : 50px; height : 50px;background-color:green; ">div 3</div>
</div>
添加背景颜色以查看 div。