大家好!我如何在CSS中制作类似这样的混合多级列表:
enter image description here结果
我尝试这个变种。但是这个粘贴计数器是无序列表
ol {
counter-reset: section;
list-style-type: none;
}
ol li:before {
counter-increment: section;
content: counters(section, ".") " ";
}
字符串
大家好!我如何在CSS中制作类似这样的混合多级列表:
enter image description here结果
我尝试这个变种。但是这个粘贴计数器是无序列表
ol {
counter-reset: section;
list-style-type: none;
}
ol li:before {
counter-increment: section;
content: counters(section, ".") " ";
}
字符串
2条答案
按热度按时间xxslljrj1#
你可以用计数
个字符
fdbelqdn2#
要使用HTML和CSS创建一个多级列表,如您所描述的,可以使用嵌套的ul(无序列表)和li(列表项)元素。列表的结构将代表章节和标题的层次结构。下面是一个如何实现这一点的示例:
字符串