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/--_star_/index.html | 105 ++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 files/zh-cn/web/css/--_star_/index.html (limited to 'files/zh-cn/web/css/--_star_/index.html') diff --git a/files/zh-cn/web/css/--_star_/index.html b/files/zh-cn/web/css/--_star_/index.html new file mode 100644 index 0000000000..039eca7b94 --- /dev/null +++ b/files/zh-cn/web/css/--_star_/index.html @@ -0,0 +1,105 @@ +--- +title: 自定义属性 (--*):CSS变量 +slug: Web/CSS/--* +tags: + - CSS + - CSS 变量 + - CSS参考 +translation_of: Web/CSS/--* +--- +
{{CSSRef}}
+ +

带有前缀--的属性名,比如--example--name,表示的是带有值的自定义属性,其可以通过 {{cssxref("var")}} 函数在全文档范围内复用的。

+ +

CSS 自定义属性是可以级联的:每一个自定义属性可以多次出现,并且变量的值将会借助级联算法和自定义属性值运算出来。

+ +

{{cssinfo}}

+ +

语法

+ +
--somekeyword: left;
+--somecolor: #0000ff;
+--somecomplexvalue: 3px 6px rgb(20, 32, 54);
+
+ +
+
<declaration-value>
+
这个值将会由一个或者多个语法执行出来,只要这些语法是正确合理的,不包含非法语句。这个值就理应是有效语法执行出来的值。
+
+ +

正式语法

+ +
{{csssyntax}}
+ +

示例

+ +
+

HTML

+ +
<p id="firstParagraph">This paragraph should have a blue background and yellow text.</p>
+<p id="secondParagraph">This paragraph should have a yellow background and blue text.</p>
+<div id="container">
+  <p id="thirdParagraph">This paragraph should have a green background and yellow text.</p>
+</div>
+ +

CSS

+ +
:root {
+  --first-color: #488cff;
+  --second-color: #ffff8c;
+}
+
+#firstParagraph {
+  background-color: var(--first-color);
+  color: var(--second-color);
+}
+
+#secondParagraph {
+  background-color: var(--second-color);
+  color: var(--first-color);
+}
+
+#container {
+  --first-color: #48ff32;
+}
+
+#thirdParagraph {
+  background-color: var(--first-color);
+  color: var(--second-color);
+}
+ +

结果

+ +

{{EmbedLiveSample('示例', 500, 130)}}

+
+ +

规范

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName("CSS3 Variables", "#defining-variables", "--*")}}{{Spec2("CSS3 Variables")}}Initial definition
+ +

浏览器兼容

+ + + +

{{Compat("css.properties.custom-property")}}

+ +

参阅

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