diff options
Diffstat (limited to 'files/ko/web/css/unset/index.html')
-rw-r--r-- | files/ko/web/css/unset/index.html | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/files/ko/web/css/unset/index.html b/files/ko/web/css/unset/index.html new file mode 100644 index 0000000000..f7e45d99da --- /dev/null +++ b/files/ko/web/css/unset/index.html @@ -0,0 +1,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> |