我想使用 css 创建一个带有有序列表的 3 列列表?
- 苹果
- 橘子
- 柠檬
现在它显示一个无序列表,即使代码显示是有序的。
示例: 1. Apples 将是第一列,Oranges 将是第二列,而不是 Apples 在第一列中,Oranges 在其下方的第一列中。
<style> ol{margin-bottom:20px; overflow:hidden; width:600px;}
li{display:inline; float:left; line-height:1px;}
#two li {width:50%;}
#three li {width:33.333%;}
#four li {width:25%;}
#six li {width:16.666%;}
</style>
<code>
<ol id="3">
<li>
<div class="fruit">
apples
oranges
lemons
etc..
</div>
</li>
</ol>
</code>