CSS counter-reset 属性
示例
创建一个计数器(“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-reset
属性创建或重置一个或多个 CSS 计数器。
The counter-reset
属性通常与 counter-increment 属性和 content 属性一起使用。
默认值 | none |
---|---|
继承 | 否 |
可动画 | 否。 阅读关于 可动画 的内容 |
版本 | CSS2 |
JavaScript 语法 | object.style.counterReset="section" 试一试 |
浏览器支持
表格中的数字指定了完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
counter-reset | 4.0 | 8.0 | 2.0 | 3.1 | 9.6 |
CSS 语法
counter-reset: none|name number|initial|inherit;
属性值
值 | 描述 |
---|---|
none | 默认值。不会重置任何计数器 |
id number | The id 定义要重置的计数器。The number 设置在选择器每次出现时重置的计数器值。默认的 number 值为 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-increment 属性
CSS 函数:counter() 函数
HTML DOM 参考:counterReset 属性