HTML:有序的子列表

时间:2012-03-29 17:53:23

标签: html css html-lists

我想创建一个这样的有序html列表:

1.0简介

1.1功能

1.2自述文件

1.3谢谢

...

如何使用html执行此操作?

3 个答案:

答案 0 :(得分:2)

计数器是要走的路。 See this fiddle which goes three levels deep

答案 1 :(得分:1)

您需要使用CSS counter-increment(可能还有counter-reset)属性。

http://www.w3schools.com/cssref/pr_gen_counter-increment.asp

答案 2 :(得分:0)

你的问题在这里得到解答

Can ordered list produce result that looks like 1.1, 1.2, 1.3 (instead of just 1, 2, 3, ...) with css?

以下样式表编号嵌套列表项为" 1"," 1.1"," 1.1.1"等。

OL { counter-reset: item }
LI { display: block }
LI:before { content: counters(item, ".") " "; counter-increment: item }

也许您可以编辑您的问题以避免重复问题。指着我刚刚告诉你的那个。