有序列表的自定义列表样式

时间:2016-11-07 14:27:12

标签: css html-lists

是否可以为呈现类似

的有序列表定义样式
<ol>
   <li>Item 1</li>
   <li>Item 2</li>
   <li>Item 3</li>
</ol>

作为

(1)第1项

(2)第2项

(3)第3项

1 个答案:

答案 0 :(得分:6)

您可以使用css counter:before伪元素来创建此类型的列表。

&#13;
&#13;
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;
&#13;
&#13;