[CSS] 상속

개발일기·2023년 2월 18일

부모 요소에 적용된 CSS 속성 값을 자식요소에 그대로 물려받는 것

<div class="content">
  <h1>상속 설명</h1>
  <p>게임 사이트 주소<b>넥슨</b></p>  
  <a href="https://www.google.com/">고고~!</a>
  <button>Here</button>
</div>

여기에 content 클래스에 color값을 줄 경우 자식 요소에도 똑같은 속성이 적용이 된다.
적용되지 않는 태그와 속성도 있다.
사이트 참조 : https://www.w3.org/TR/CSS21/propidx

적용되지 않는 속성 : margin, padding, border , box-sizing, display, background, vertical-align, text-ecoration, top/right/bottom/left, position, overflow, width/height

적용되는 속성 : font-family, font-size, font-weight, line-height, visibility, opacity, color, line-height, text-align, white-space, list-style

상속되지 않는 태그 : a, button

※상속되지 않는 요소나 태그는 inherit을 쓰면 부모로부터 상속을 받을 수 있다.
(예: margin: inherit 또는 padding: inherit)

0개의 댓글