From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/css/counter-reset/index.html | 116 +++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 files/zh-cn/web/css/counter-reset/index.html (limited to 'files/zh-cn/web/css/counter-reset/index.html') diff --git a/files/zh-cn/web/css/counter-reset/index.html b/files/zh-cn/web/css/counter-reset/index.html new file mode 100644 index 0000000000..e670bedf30 --- /dev/null +++ b/files/zh-cn/web/css/counter-reset/index.html @@ -0,0 +1,116 @@ +--- +title: counter-reset +slug: Web/CSS/counter-reset +translation_of: Web/CSS/counter-reset +--- +
{{CSSRef}}
+ +


+ counter-reset 属性用于将 CSS计数器 重置为制定值

+ +

{{EmbedInteractiveExample("pages/css/counter-reset.html")}}

+ +
+

注意:计数器的值能够通过 CSS 属性 {{cssxref("counter-increment")}} 控制递增或递减。

+
+ +

语法

+ +
/* Set counter-name to 0 */
+counter-reset: counter-name;
+
+/* Set counter-name to -1 */
+counter-reset: counter-name -1;
+
+/* Set counter1 to 1, and counter2 to 4 */
+counter-reset: counter1 1 counter2 4;
+
+/* Cancel any reset that could have been set in less specific rules */
+counter-reset: none;
+
+/* Global values */
+counter-reset: inherit;
+counter-reset: initial;
+counter-reset: unset;
+
+ +

counter-reset 属性可以指定为以下之一:

+ + + +

可选值

+ +
+
{{cssxref("custom-ident", "<custom-ident>")}}
+
要递增的计数器的名称。
+
+ +
+

该名称由不区分大小写的字母 a 到 z,数字 0 到 9,下划线(_)和 / 或短划线( - )的组合组成,并且第一个非破折号字符必须是一个字母(即,在它的开头没有数字,即使前面有破折号)。此外,在标识符的开头禁止使用两个破折号。在任何案例组合中都不能是 none,unset,initial 或 inherit。

+
+ +
+
{{cssxref("<integer>")}}
+
每次出现元素时将计数器重置为的值。如果不指定,则默认为 0
+
none
+
该关键字表示不执行计数器重置。它可用于重置隐藏在不太具体的规则中定义的计数器。你可以指定要根据需要重置的计数器,每个计数器用空格分隔。
+
+ +

语法形式

+ +
{{csssyntax}}
+ +

示例

+ +
h1 {
+  counter-reset: chapter section 1 page;
+  /* Sets the chapter and page counters to 0
+     and the section counter to 1. */
+}
+
+ +

规范

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('CSS3 Lists', '#counter-reset', 'counter-reset')}}{{Spec2('CSS3 Lists')}}No change.
{{SpecName('CSS2.1', 'generate.html#propdef-counter-reset', 'counter-reset')}}{{Spec2('CSS2.1')}}Initial definition.
+ +

{{cssinfo}}

+ +

浏览器兼容性

+ +
{{Compat("css.properties.counter-reset")}}
+ +
+ +

参考

+ + -- cgit v1.2.3-54-g00ecf