唯一的纯CSS方法是使用counters:
ol { counter-reset: item; list-style-type: none;}ol li:before { content: 'Q' counter(item, decimal) '. '; counter-increment: item;}
除了使用CSS计数器(专门为此类用例设计的!)或Javascript之外,您无法实现此目的。
顺便说一句,这是
decimal不是
numbered。
欢迎分享,转载请注明来源:内存溢出
唯一的纯CSS方法是使用counters:
ol { counter-reset: item; list-style-type: none;}ol li:before { content: 'Q' counter(item, decimal) '. '; counter-increment: item;}
除了使用CSS计数器(专门为此类用例设计的!)或Javascript之外,您无法实现此目的。
顺便说一句,这是
decimal不是
numbered。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)