是否可以为呈现类似
的有序列表定义样式<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
作为
(1)第1项
(2)第2项
(3)第3项
答案 0 :(得分:6)
您可以使用css counter
和:before
伪元素来创建此类型的列表。
ol {
counter-reset: custom;
list-style-type: none;
}
ol li:before {
content: '('counter(custom)') ';
counter-increment: custom;
}
&#13;
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
&#13;