전체적인 우선 순위 !important > inline style > style tag > css > browser default CSS 파일 안에서 점수를 매겨 봅시다 !important : 무한대 id : 100점 class, attribute, pseudo-class : 10점 tag element, pseudo-element: 1점 예제로 파악해보자 .container { ... } /* 10점 */ #container { ... } /* 100점(적용) */ .container .first-child { ... } /* 10점 + 10점*/ .container #first-child /* 10점 + 100점(적용) */ .container div.first-child { ... }/* 10점 +..