blob: f955a787503aa2aef235435f132a6a70be7d2347 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
---
title: 自定义属性 (--*):CSS变量
slug: Web/CSS/--*
tags:
- CSS
- CSS 变量
- CSS参考
translation_of: Web/CSS/--*
---
<div>{{CSSRef}}</div>
<p class="summary">带有前缀<code>--</code>的属性名,比如<code>--example--name</code>,表示的是带有值的自定义属性,其可以通过 {{cssxref("var")}} 函数在全文档范围内复用的。</p>
<p>CSS 自定义属性是可以级联的:每一个自定义属性可以多次出现,并且变量的值将会借助级联算法和自定义属性值运算出来。</p>
<p>{{cssinfo}}</p>
<h2 id="语法">语法</h2>
<pre class="brush: css"><span style='background-color: #eeeeee; font-family: consolas,monaco,"Andale Mono",monospace; font-size: 1rem; letter-spacing: -0.00278rem; white-space: pre;'>--somekeyword: left;</span>
--somecolor: #0000ff;
--somecomplexvalue: 3px 6px rgb(20, 32, 54);
</pre>
<dl>
<dt><code><declaration-value></code></dt>
<dd>这个值将会由一个或者多个语法执行出来,只要这些语法是正确合理的,不包含非法语句。这个值就理应是有效语法执行出来的值。</dd>
</dl>
<h3 id="正式语法">正式语法</h3>
{{csssyntax}}
<h2 id="示例">示例</h2>
<div>
<h3 id="HTML">HTML</h3>
<pre class="brush: 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></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: 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);
}</pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample('示例', 500, 130)}}</p>
</div>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS3 Variables", "#defining-variables", "--*")}}</td>
<td>{{Spec2("CSS3 Variables")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容">浏览器兼容</h2>
<p>{{Compat("css.properties.custom-property")}}</p>
<h2 id="参阅">参阅</h2>
<ul>
<li><a href="/en-US/docs/Web/CSS/Using_CSS_variables">Using CSS variables</a></li>
</ul>
|