※ CSS 우선순위 => 'F12' 눌러서 확인

  1. !important
  2. 인라인 스타일
  3. id가 쓰인 속성
  4. class, atrribute, pseudo-class
  5. 태그 이름으로 지정한 속성
  6. 부모 요소에 의해 상속된 속성

※ 내부 스타일 시트와 외부 스타일 시트의 우선 순위는 HTML에 작성한 순서에 따라 달라진다.

<style>
</style>
<link rel="stylesheet" href="style.css">

=> 외부 스타일 시트가 우선

<link rel="stylesheet" href="style.css">
<style>
</style>

=> 내부 스타일 시트가 우선