blob: 3b33d4cf63199e584f6ce07d5f29d2f058ef9190 (
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
106
107
108
109
110
111
112
113
114
115
|
---
title: unset
slug: Web/CSS/unset
tags:
- CSS
- 布局
- 未设置
- 样式
translation_of: Web/CSS/unset
---
<div>{{CSSRef}}</div>
<p>如果CSS关键字 <strong><code>unset</code></strong> 从其父级继承,则将该属性重新设置为继承的值,如果没有继承父级样式,则将该属性重新设置为初始值。换句话说,在第一种情况下(继承属性)它的行为类似于{{cssxref("inherit")}} ,在第二种情况下(非继承属性)类似于{{cssxref("initial")}}。它可以应用于任何CSS属性,包括CSS简写属性 {{cssxref("all")}} 。</p>
<h2 id="示例">示例</h2>
<h3 id="Color">Color</h3>
<h4 id="HTML">HTML</h4>
<pre class="brush: html"><p>This text is red.</p>
<div class="foo">
<p>This text is also red.</p>
</div>
<div class="bar">
<p>This text is green (default inherited value).</p>
</div></pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css">.foo {
color: blue;
}
.bar {
color: green;
}
p {
color: red;
}
.bar p {
color: unset;
}
</pre>
<h4 id="结果">结果</h4>
<p>{{ EmbedLiveSample('Color') }}</p>
<h3 id="Border">Border</h3>
<h4 id="HTML_2">HTML</h4>
<pre class="brush: html"><p>This text has a red border.</p>
<div>
<p>This text has a red border.</p>
</div>
<div class="bar">
<p>This text has has a black border (initial default, not inherited).</p>
</div></pre>
<h4 id="CSS_2">CSS</h4>
<pre class="brush: css">div {
border: 1px solid green;
}
p {
border: 1px solid red;
}
.bar p {
border-color: unset;
}</pre>
<h4 id="结果_2">结果</h4>
<p>{{ EmbedLiveSample('Border', 'auto', 200) }}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">版本</th>
<th scope="col">评论</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSS4 Cascade', '#inherit-initial', 'unset') }}</td>
<td>{{ Spec2('CSS4 Cascade') }}</td>
<td>与Level 3无变化</td>
</tr>
<tr>
<td>{{ SpecName('CSS3 Cascade', '#unset', 'unset') }}</td>
<td>{{ Spec2('CSS3 Cascade') }}</td>
<td>初始规范</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{ Compat("css.types.global_keywords.unset")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>使用{{cssxref("initial")}}将属性设置为其初始值。</li>
<li>使用{{cssxref("revert")}}将属性重置为user-agent样式表规定的值(或用户样式,如果存在)。</li>
<li>使用{{cssxref("inherit")}}使元素的属性与其父元素相同。</li>
<li> {{cssxref("all")}}属性允许您一次将所有属性重置为其初始,继承,恢复或未设置状态。</li>
</ul>
|