css counter-increment 属性递增一个或多个计数器值
counter-increment 属性通常用于 counter-reset 属性和 content 属性
默认值: | none |
---|---|
继承: | no |
版本: | CSS2 |
JavaScript 语法: | object.style.counterIncrement="subsection" |
counter-increment: none | *id number* | inherit
值 | 说明 |
---|---|
none | 没有计数器将递增 |
id number | id 定义将增加计数的选择器、id 或 class number 定义增量 number 可以是正数、零或者负数 |
inherit | 指定counter-increment属性的值,应该从父元素继承 |
所有主流浏览器都支持 counter-increment 属性
IE8 只有指定 <!DOCTYPE html> 才支持 counter-increment 属性
对部分和子部分进行编号(比如 "Section 1"、"1.1"、"1.2")的方法
body {
counter-reset:section;
}
h1 {
counter-reset:subsection;
}
h1:before {
counter-increment:section;
content:"Section " counter(section) ". ";
}
h2:before {
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}