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/custom-ident/index.html | 119 ++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 files/zh-cn/web/css/custom-ident/index.html (limited to 'files/zh-cn/web/css/custom-ident/index.html') diff --git a/files/zh-cn/web/css/custom-ident/index.html b/files/zh-cn/web/css/custom-ident/index.html new file mode 100644 index 0000000000..09712f52e9 --- /dev/null +++ b/files/zh-cn/web/css/custom-ident/index.html @@ -0,0 +1,119 @@ +--- +title: +slug: Web/CSS/custom-ident +tags: + - CSS + - CSS数据类型 +translation_of: Web/CSS/custom-ident +--- +
{{CSSRef}}
+ +

<custom-ident> 指用户自定义字符串标识符。一种CSS 数据类型;要区分大小写,值不能有任何歧义。

+ +

语法

+ +

<custom-ident> 语法同CSS属性名相似,但它是区分大小写的。可以由以下字符组成:

+ + + +

注意:id1, Id1, iD1ID1都是不同标识符,因为标识符是区分大小写的。另一方面,因为可以解码,所以 toto\? 和 toto\3F 是相同的。

+ +

禁用值

+ +

<custom-ident> 不能用单引号或双引号包起来。此外,第一个字符不能为数字,字符串开头不能是连字符 (-) 后跟数字或连字符。

+ +

为避免歧义,各个属性对应的<custom-ident> 禁止使用以下特殊值:

+ +
+
{{cssxref("animation-name")}}
+
禁用CSS关键字 unset, initial,  inheritnone
+
{{cssxref("counter-reset")}}
+
{{cssxref("counter-increment")}}
+
禁止使用unset, initial,  inherit,  none.
+
{{cssxref("@counter-style")}}
+
{{cssxref("list-style-type")}}
+
禁止使用unset, initial,  inheritnone, inlineoutside. 同时不同浏览器预定义的值如: disc, circle, square, decimal, cjk-decimal, decimal-leading-zero, lower-roman, upper-roman, lower-greek, lower-alpha, lower-latin, upper-alpha, upper-latin, arabic-indic, armenian, bengali, cambodian, cjk-earthly-branch, cjk-heavenly-stem, cjk-ideographic, devanagari, ethiopic-numeric, georgian, gujarati, gurmukhi, hebrew, hiragana, hiragana-iroha, japanese-formal, japanese-informal, kannada, katakana, katakana-iroha, khmer, korean-hangul-formal, korean-hanja-formal, korean-hanja-informal, lao, lower-armenian, malayalam, mongolian, myanmar, oriya, persian, simp-chinese-formal, simp-chinese-informal, tamil, telugu, thai, tibetan, trad-chinese-formal, trad-chinese-informal, upper-armenian, disclosure-open, 和 disclosure-close也不能使用。
+
{{cssxref("grid-row-start")}}
+ {{cssxref("grid-row-end")}}
+ {{cssxref("grid-column-start")}}
+ {{cssxref("grid-column-end")}}
+
禁止使用 span 。
+
{{cssxref("will-change")}}
+
禁止使用unset, initial,  inherit, 以及 will-change, auto, scroll-position, and contents.
+
+ +

示例

+ +

有效标识符

+ +
nono79            字母数字混合
+ground-level      字母-字母
+-test             连字符后跟字母
+_internal         下划线后跟字母
+\22 toto          Unicode编码后跟字母
+bili\.bob         转义的句号
+
+ +

无效标识符

+ +
34rem             第一个字符不能是数字
+-12rad            第一个字符连字符后不能跟数字
+bili.bob          只有字母数字、连字符-、下划线_不需要转义
+--toto            第一个字符不能为连字符后跟连字符
+'bilibob'         不能用单引号包起来,这是一个字符串类型
+"bilibob"         不能用双引号包起来,这是一个字符串类型
+ +

参考文档

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('CSS Will Change', '#valdef-will-change-custom-ident', '<custom-ident> for will-change')}}{{Spec2('CSS Will Change')}}Defines which values are excluded for {{cssxref("will-change")}}.
{{SpecName('CSS3 Counter Styles', '#typedef-counter-style-name', '<custom-ident> for list-style-type')}}{{Spec2('CSS3 Counter Styles')}}Uses <custom-ident> instead of a finite list of keywords. Defines which values are excluded for {{cssxref("list-style-type")}} and {{cssxref("@counter-style")}}.
{{SpecName('CSS3 Lists', '#counter-properties', '<custom-ident> for counter-*')}}{{Spec2('CSS3 Lists')}}Renames <identifier> to <custom-ident>. Adds its usage to the new counter-set property.
{{SpecName('CSS3 Animations', '#typedef-single-animation-name', '<custom-ident> for animation-name')}}{{Spec2('CSS3 Animations')}}Defines which values are excluded for {{cssxref("animation-name")}}.
{{SpecName('CSS3 Values', '#identifier-value', '<custom-ident>')}}{{Spec2('CSS3 Values')}}Renames <identifier> to <custom-ident>. Makes it a pseudo-type and forbids the use of excluded values.
{{SpecName('CSS2.1', 'syndata.html#value-def-identifier', '<identifier>')}}{{Spec2('CSS2.1')}}Initial definition.
+ +

浏览器兼容性

+ +

由于这种类型不是真正的类型,而是用于简化允许值描述的便利类型,因此没有浏览器兼容性信息。

-- cgit v1.2.3-54-g00ecf