参见英文答案 >
Can ordered list produce result that looks like 1.1,1.2,1.3 (instead of just 1,2,3,…) with css? 10个
我要这个:
我要这个:
1. Main 1.1 sub1 1.2 sub2 2. Main2 2.1 sub3
是否可以在HTML中执行此操作?
谢谢.
解决方法
是的,至少在现代浏览器中:
li li:before { counter-increment: item; content: counter(item) ". "; }
(li li是这样的,它只在第一级之后才这样做.)
你可能也需要反复位.