css 使用CSS计数器自动编号Aras Tech Doc部分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 使用CSS计数器自动编号Aras Tech Doc部分相关的知识,希望对你有一定的参考价值。

/* Set a CSS counter using counter-reset (starts at 0) */
body {
    counter-reset: sectionNum;
}

/* Increment sectionNum counter at each .Section element */
.Section {
    counter-increment: sectionNum;
}

/* Display sectionNum value before each Section Title */
.Section>.Title::before {
    content: counter(sectionNum, upper-alpha) ". ";
}

以上是关于css 使用CSS计数器自动编号Aras Tech Doc部分的主要内容,如果未能解决你的问题,请参考以下文章

xml 使用CSS计数器自动为Aras Tech Doc部分中的特定子元素编号

css 自定义Aras Tech Doc风格的CSS

css 使用CSS计数器编号的自动标题

css 使用CSS计数器编号的自动标题

使用 Cucumber / Selenium 测试 CSS 计数器

CSS Counter 在 Chrome 中使用 slidetoggle 给出错误的编号