Style counterReset 属性 详解
css3基础 2023-07-30 02:20:59小码哥的IT人生shichen
Style counterReset 属性
定义和用法
counterReset
属性创建或重置一个或多个计数器。
counterReset
属性通常与 counterIncrement 属性和 content 属性一起使用。
实例
更改 counter-reset 属性:
document.body.style.counterReset = "section";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
h1:before {
counter-increment: section;
content: "Section " counter(section) ". ";
}
</style>
</head>
<body>
<p>点击“试一试”按钮可设置 BODY 元素的 counter-reset 属性:</p>
<button onclick="myFunction()">试一试</button>
<h1>HTML 教程</h1>
<h1>JavaScript 教程</h1>
<h1>CSS 教程</h1>
<script>
function myFunction() {
document.body.style.counterReset = "section";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 counterReset 属性:
object.style.counterReset
设置 counterReset 属性:
object.style.counterReset = "none|name number|initial|inherit"
属性值
值 | 描述 |
---|---|
none | 默认值。不会重置任何计数器。 |
name | name 定义应重置的计数器。 |
number |
设置计数器在每次出现选择器时设置的值。 默认重置值为 0。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | 无 |
---|---|
返回值: | 字符串,表示元素的 counter-reset 属性。 |
CSS 版本: | CSS2 |
浏览器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |