我希望生成一个包含两列的布局,其中右列跨越两行。我只想使用 DIV 标签来做到这一点:
+-----------+-----------+
+ + +
+ + +
+-----------+ +
+ + +
+ + +
+-----------+-----------+
我试过了:
<div>
<div style="float:left; width: 100px;"></div>
<div style="float:right width: 100px;"></div>
<div style="float:left; width: 100px;"></div>
</div>
但这没有帮助。