상속
페이지 정보
작성일 21-08-04 22:56본문
상속되는 속성들 (properties)
=>보통 글자를 다루는 속성들이 상속이 됨
font
color
text-align
text-indent
text-decoration
letter-spacing
opacity
(etx...)
강제 상속
ex )
.parent{
position: absolute;
}
.child{
position: inherit;
}
<div class="parent">
<div class="child"></div>
</div>
inherit를 쓰면 자식은 부모의 요소를 강제 상속 받는다.
댓글목록
등록된 댓글이 없습니다.