CSS counter-increment 属性
示例
创建一个计数器 ("my-sec-counter"),并在每次出现 <h2> 选择器时将其增加 1
body {
/* 将 "my-sec-counter" 设置为 0 */
counter-reset: my-sec-counter;
}
h2::before {
/* 将 "my-sec-counter" 增加 1 */
counter-increment: my-sec-counter;
content: "Section " counter(my-sec-counter) ". ";
}
亲自尝试 »
下面还有更多“亲自尝试”的示例。
定义和用法
The counter-increment
属性增加或减少一个或多个 CSS 计数器的值。
The counter-increment
属性通常与 counter-reset 属性和 content 属性一起使用。
默认值 | none |
---|---|
继承 | 否 |
可动画 | 否。 阅读关于 animatable 的内容 |
版本 | CSS2 |
JavaScript 语法 | object.style.counterIncrement = "subsection"; 尝试一下 |
浏览器支持
表中的数字指定完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
counter-increment | 4.0 | 8.0 | 2.0 | 3.1 | 9.6 |
CSS 语法
counter-increment: none|id|initial|inherit;
属性值
值 | 描述 |
---|---|
none | 默认值。不会递增任何计数器 |
id 数字 | The id 定义要递增的计数器。The number 设置在每次出现选择器时计数器递增多少。默认递增量为 1。允许使用负值。如果 id 指的是一个未由 counter-reset 初始化的计数器,则默认初始值为 0 |
initial | 将此属性设置为其默认值。 阅读关于 initial 的内容 |
inherit | 从其父元素继承此属性。 阅读关于 inherit 的内容 |
更多示例
示例
创建一个计数器 ("my-sec-counter"),并在每次出现 <h2> 选择器时将其减少 1
body {
/* 将 "my-sec-counter" 设置为 0 */
counter-reset: my-sec-counter;
}
h2::before {
/* 将 "my-sec-counter" 减少 1 */
counter-increment: my-sec-counter -1;
content: "Section " counter(my-sec-counter) ". ";
}
亲自尝试 »
示例
使用“Section 1:”、“1.1”、“1.2”等对章节和小节进行编号。
body {
/* 将 "section" 设置为 0 */
counter-reset: section;
}
h1 {
/* 将 "subsection" 设置为 0 */
counter-reset: subsection;
}
h1::before {
/* 将 "section" 增加 1 */
counter-increment: section;
content: "Section " counter(section) ": ";
}
h2::before {
/* 将 "subsection" 增加 1 */
counter-increment: subsection;
content: counter(section) "." counter(subsection) " ";
}
亲自尝试 »
示例
创建一个计数器,并在每次出现 <h2> 选择器时将其增加 1(使用罗马数字)。
body {
/* 将 "my-sec-counter" 设置为 0 */
counter-reset: my-sec-counter;
}
h2::before {
/* 将 "my-sec-counter" 增加 1 */
counter-increment: my-sec-counter;
content: counter(my-sec-counter, upper-roman) ". ";
}
亲自尝试 »
相关页面
CSS 参考:::before 伪元素
CSS 参考:::after 伪元素
CSS 参考:content 属性
CSS 参考:counter-reset 属性
CSS 函数:counter() 函数
HTML DOM 参考:counterIncrement 属性