CSS counter-reset 属性 详解
css3基础 2022-07-14 16:04:38小码哥的IT人生shichen
CSS counter-reset 属性
定义和用法
counter-reset 属性设置某个选择器出现次数的计数器的值。默认为 0。
利用这个属性,计数器可以设置或重置为任何值,可以是正值或负值。如果没有提供 number,则默认为 0。
注释:如果使用 "display: none",则无法重置计数器。如果使用 "visibility: hidden",则可以重置计数器。
另请参阅:
CSS 参考手册:CSS :before 伪元素
CSS 参考手册:CSS :after 伪元素
CSS 参考手册:content 属性
CSS 参考手册:counter-increment 属性
CSS 函数:counter() 函数
HTML DOM 参考手册:counterReset 属性
实例
对部分和子部分进行编号(比如 "Section 1"、"1.1"、"1.2")的方法:
body
{
counter-reset:section;
}
h1
{
counter-reset:subsection;
}
h1:before
{
content:"Section " counter(section) ". ";
counter-increment:section;
}
h2:before
{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
完整实例【亲自试一试】:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
a:after
{content: " (" attr(href) ")"
}
</style>
</head>
<body>
<p><a href="http://www.phpcodeweb.com">phpcodeweb</a> contains free tutorials and references.</p>
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 content 属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
CSS 语法
counter-reset: none|name number|initial|inherit;
属性值
值 | 描述 |
---|---|
none | 默认。不能对选择器的计数器进行重置。 |
id number |
id 定义重置计数器的选择器、id 或 class。 number 可设置此选择器出现次数的计数器的值。可以是正数、零或负数。 |
inherit | 规定应该从父元素继承 counter-reset 属性的值。 |
技术细节
默认值: | none |
---|---|
继承性: | no |
版本: | CSS2 |
JavaScript 语法: | object.style.counterReset="subsection" |
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
4.0 | 8.0 | 2.0 | 3.1 | 9.6 |
注释:如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 counter-reset 属性。