CSS counter-increment
属性
说明
counter-increment
CSS 属性增加一个或多个计数器值。 此属性对于创建自动编号功能非常有用。
下表总结了此属性的使用上下文和版本历史记录。
默认值: | none |
---|---|
适用于: | 所有元素 |
继承: | No |
动画: | No. 参见动画属性。 |
版本: | CSS 2, 3 |
语法
属性的语法如下:
下面的示例显示了 counter-increment
属性的作用。
body {
counter-reset: section;
}
h1 {
counter-reset: category;
}
h1:before {
counter-increment: section;
content: "Section " counter(section) ". ";
}
h2:before {
counter-increment: category;
content: counter(section) "." counter(category) " ";
}
属性值
下表描述了该属性的值。
值 | 说明 |
---|---|
identifier | 要递增的计数器的名称。 |
integer | 要添加到计数器的值。 默认增量为 1。允许使用零值或负值。 |
none |
不会增加任何计数器。 这是默认值。 |
initial |
将此属性设置为其默认值。 |
inherit |
如果指定,关联元素将采用其父元素 direction 属性的 计算值。 |
浏览器兼容性
所有主要的现代浏览器都支持 counter-increment
属性。
基本支持—
|
进一步阅读
请参阅以下教程: CSS 伪元素.
相关属性: content
, counter-reset
.
Advertisements