我必须表现得像
(一个)
(b)中
(C)
更新:
我发现了一种CSS方式
ol {list-style-type: none;} li:before {content: "(" counter(section,lower-alpha) ") ";} li { counter-increment: section;}
但它不能在IE 7和更低版本.
解决方法
这是可能的自定义计数器,但至少IE7-不支持它,其他一些可能也不.详见
http://www.quirksmode.org/css/counter.html
例如:
li:before { content: "(" counter(mycounter,lower-latin) ")"; }