.ecosystem에 적용된 색상이, 하위 요소들에게도 적용이 된다. (모두 그런것은 아니고 주로 text가 이러한 현상이 일어난다.)
.ecosystem{
color : red;
}
<div class = "ecosystem">생태계
<div class = "animal">동물
<div class ="tiger">호랑이</div>
</div>
</div>
1. 강제 상속
상속되지 않는 속성(값)도 inherit이라는 값을 사용하여 "부모"에서 "자식"으로 강제 상속 시킬 수 있다. "자식"을 제외한 "후손"에게는 적용되지 않으며, 모든 속성이 강제 상속을 사용할 수 있는 것은 아니다.
.parent{
position : absolute; /* 상속되지 않는 속성과 값 */
}
.child {
position : inherit; /* 강제 상속 받아 position : absolute;와 동일 */
}
<div class = "parent">
<div class = "child"></div>
</div>
'CSS > 기초' 카테고리의 다른 글
object-fit <img>나 <video> 콘텐츠 크기 조절 (0) | 2021.02.16 |
---|---|
우선순위 (0) | 2021.01.07 |
속성 선택자(Attribute Selectors) - [attr^=value], [attr$=value] (0) | 2021.01.07 |
속성 선택자(Attribute Selectors) - [attr], [attr=value] (0) | 2021.01.07 |
가상 요소 선택자(Pseudo-Elements Selector) - before, after (0) | 2021.01.07 |