aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/css/inherit/index.html
blob: 71f7890cc33e3249174e4dcb4676767e3940bac3 (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
---
title: inherit
slug: Web/CSS/inherit
tags:
  - CSS
  - CSS Cascade
  - Layout
  - Reference
  - Web
translation_of: Web/CSS/inherit
---
<div>{{CSSRef}}</div>

<p><span class="seoSummary">CSS <strong><code>inherit</code></strong> 키워드를 사용한 속성은 부모 요소로부터 해당 속성의 <a href="/ko/docs/Web/CSS/computed_value">계산값</a>을 받아 사용합니다.</span> CSS {{cssxref("all")}} 단축 속성을 포함한 모든 속성에 사용할 수 있습니다.</p>

<p>상속되는 속성(<a href="/en/CSS/inheritance" title="en/CSS/inheritance">inherited properties</a>)의 경우, 이는 기본 동작(behavior)을 강화하고 오직 다른 규칙을 재정의(override)해야 합니다. 상속되지 않는 속성(<a href="/en/CSS/inheritance" title="en/CSS/inheritance">non-inherited properties</a>)은, 이는 보통 비교적 거의 의미가 없는 동작을 지정하고 당신은 대신 {{cssxref("initial")}} 혹은 {{cssxref("all")}} 속성에 {{cssxref("unset")}} 사용을 고려할 지도 모릅니다.</p>

<p>상속(Inheritance)은 심지어 부모 요소가 포함(containing) 블록이 아니더라도, 항상 문서 트리 내 부모 요소로부터입니다.</p>

<h2 id="예제">예제</h2>

<pre class="brush: css"> /* h2를 green으로 만듦 */
 h2 { color: green; }

 /* 부모 요소의 color를 사용하도록 sidebar 내의 h2를 홀로 남김 */
 #sidebar h2 { color: inherit; }
</pre>

<p>이 예제에서 sidebar 내부의 <code>h2</code> 요소는 다른 색일지도 모릅니다. 예를 들어, 그 중 하나는 규칙과 일치하는 div의 자식이라면</p>

<pre class="brush: css"> div#current { color: blue; }
</pre>

<p>파란색이 됩니다.</p>

<h2 id="명세">명세</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th>명세</th>
   <th>상태</th>
   <th>설명</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSS4 Cascade', '#inherit', 'inherit') }}</td>
   <td>{{Spec2('CSS4 Cascade')}}</td>
   <td>Level 3에 변화 없음.</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS3 Values', "#common-keywords", "inherit") }}</td>
   <td>{{ Spec2('CSS3 Values') }}</td>
   <td>{{ SpecName('CSS2.1') }}에서 두드러진 변화 없음</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS2.1', "cascade.html#value-def-inherit", "inherit") }}</td>
   <td>{{ Spec2('CSS2.1') }}</td>
   <td>초기 정의</td>
  </tr>
 </tbody>
</table>

<h2 id="브라우저_호환성">브라우저 호환성</h2>

<div>{{Compat("css.types.global_keywords.inherit")}}</div>

<h2 id="같이_보기">같이 보기</h2>

<ul>
 <li><a class="internal" href="/ko/docs/Web/CSS/inheritance">상속</a></li>
 <li>{{cssxref("initial")}}을 사용해 속성의 초깃값을 사용하세요.</li>
 <li>{{cssxref("unset")}}을 사용해 속성의 상속값 또는 초깃값을 사용하세요.</li>
 <li>{{cssxref("revert")}}를 사용해 사용자 에이전트가 지정한 값(또는 사용자가 수정한 값)으로 속성을 되돌리세요.</li>
 <li>{{cssxref("all")}} 속성을 사용하면 요소의 모든 속성을 한꺼번에 <code>initial</code>, <code>inherit</code>, <code>revert</code>, <code>unset</code>할 수 있습니다.</li>
</ul>