我正在尝试创建这样的布局:
[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