我正在尝试创建这样的布局:
[Left Area][Row 1]
[ ][Row 2]
[ ] ...
第 1,2 行等应保持在彼此下方,切勿低于 [左侧区域]
我尝试使用“display:inline”将 [Left Area] 和 Rows 区域设置为 div,并且它可以工作,但只有在我尝试分隔各个行之前 - 然后 [Row 2] 要么位于 [Row 1] 旁边,要么位于 [左侧区域] 下方。
<div>
<div style="float:left;display:inline">Left Left Left</div>
<div style="display:inline">
<div>First First First</div>
<div>Second Second Second</div>
</div>
</div>
Below Below Below