我有兩個無序列表,我試圖將它們並排放置。 這適用於Firefox,Safari和Chrome & IE8。但不是IE 7或兼容模式。兩個無序列表並列
這裏的標記:
<span>
<ul style="list-style-type: none; display: inline-block;">
<li>1</li>
<li>2</li>
</ul>
<ul style="list-style-type: none; display: inline-block;">
<li>3</li>
<li>4</li>
</ul>
<span>
基本上預期是:
1 3
2 4
'float:left;'they probably? (第二個留有餘量) –