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
116
117
118
119
120
|
---
title: unset
slug: Web/CSS/unset
tags:
- CSS
- CSS Cascade
- Layout
- Reference
translation_of: Web/CSS/unset
---
<div>{{CSSRef}}</div>
<p><span class="seoSummary">CSS <strong><code>unset</code></strong> 키워드를 적용한 속성은, 부모로부터 상속할 값이 존재하면 상속값을, 그렇지 않다면 <a href="/ko/docs/Web/CSS/initial_value">초깃값</a>을 사용합니다.</span> 다르게 표현하자면, 전자일 땐 {{cssxref("inherit")}} 키워드처럼, 후자일 땐 {{cssxref("initial")}} 키워드처럼 동작합니다. {{cssxref("all")}} 단축 속성을 포함한 모든 속성에 사용할 수 있습니다.</p>
<h2 id="예제">예제</h2>
<h3 id="글자_색">글자 색</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('글자_색') }}</p>
<h3 id="테두리">테두리</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('테두리', '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")}}를 사용해 사용자 에이전트가 지정한 값(또는 사용자가 수정한 값)으로 속성을 되돌리세요.</li>
<li>{{cssxref("inherit")}}을 사용해 속성의 값이 부모와 같도록 지정하세요.</li>
<li>{{cssxref("all")}} 속성을 사용하면 요소의 모든 속성을 한꺼번에 <code>initial</code>, <code>inherit</code>, <code>revert</code>, <code>unset</code>할 수 있습니다.</li>
</ul>
|