코딩
<!-- body 기준 section 을 자식 -->
<!-- section 기준 body 을 부모 -->
<sectoion>
<!-- div 기준 body 를 조상 -->
<!-- body 기준 div 를 후손 -->
<div>
</div>
</sectoion>
<!-- section 기준 aside를 인접동생 -->
<!-- aside 기준 section를 형 -->
<aside> </aside>
<!-- section 기준 footer를 동생 -->
<footer></footer>
<!--
[css 에서 사용 할 수 있는 선택자]
자식선택자 >
후손 선택자 띄어쓰기
인접동생선택자 +
그룹 선택자 ,
클래스 선택자 .
아이디 선택자 #
-->