您好,
list-style-type decimal显示如下列表:
1. apple
2. pear
3. whatever
但我不需要点,所以它看起来像这样:
1 apple
2 pear
3 whatever
有可能吗?
谢谢。
答案 0 :(得分:6)
使用 CSS Counters
.list {
counter-reset: number;
list-style-type: none;
}
/* The "\a0" is a space */
.list li::before {
counter-increment: number;
content: counter(number)"\a0";
}

<ol class='list'>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ol>
&#13;