1순위: !important
2순위: inline 스타일 속성
3순위: 아이디
4순위: 클래스
5순위: 요소 선택지
6순위: 전체 선택지
더 구체적으로 가르키는 것이 우선시됨!
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<h1 id="guess" class="guess">Rainbow</h1>
<ul class="rainbow">
</body>
</html>
.guess {
background: blue !important;
}
.guess {
background: purple;
}
/* class는 *.guess로 *.이 생략된 형태이다!! */
h1 {
background: blue;
}
h1 {
background: orange;
}
#guess {
background: yellow;
}
h1.guess {
background: dodgerblue;
}
* {
background: aqua;
}