요약
inherit
CSS 값은 요소가 부모 요소로부터 속성(property)의 계산값(computed value)을 갖도록 지정되게 합니다. 모든 CSS 속성에 허용됩니다.
상속되는 속성(inherited properties)의 경우, 이는 기본 동작(behavior)을 강화하고 오직 다른 규칙을 재정의(override)해야 합니다. 상속되지 않는 속성(non-inherited properties)은, 이는 보통 비교적 거의 의미가 없는 동작을 지정하고 당신은 대신 initial
혹은 all
속성에 unset
사용을 고려할 지도 모릅니다.
상속(Inheritance)은 심지어 부모 요소가 포함(containing) 블록이 아니더라도, 항상 문서 트리 내 부모 요소로부터입니다.
예제
/* h2를 green으로 만듦 */ h2 { color: green; } /* 부모 요소의 color를 사용하도록 sidebar 내의 h2를 홀로 남김 */ #sidebar h2 { color: inherit; }
이 예제에서 sidebar 내부의 h2
요소는 다른 색일지도 모릅니다. 예를 들어, 그 중 하나는 규칙과 일치하는 div의 자식이라면
div#current { color: blue; }
파란색이 됩니다.
스펙
스펙 | 상태 | 설명 |
---|---|---|
CSS Cascading and Inheritance Level 4 The definition of 'inherit' in that specification. |
Working Draft | Level 3에 변화 없음. |
CSS Values and Units Module Level 3 The definition of 'inherit' in that specification. |
Candidate Recommendation | CSS Level 2 (Revision 1)에서 두드러진 변화 없음 |
CSS Level 2 (Revision 1) The definition of 'inherit' in that specification. |
Recommendation | 초기 정의 |
브라우저 호환성
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.7 or earlier) | 8.0 | 4.0 | 1.0 (85) |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.0) | ? | ? | (Yes) |
참조
- 상속(Inheritance)
- CSS 속성
all