[CSS] 적용 우선 순위
-
Inline > Internal > external style 순
Inline | IDs | Internal | external |
style="color: #ffffff;" |
#id { color: #ffffff } |
a:hover { color: #ffffff } |
div, h1, :before, :after |
-
두 가지 같은 등급시 가장 마지막으로 적용한 것이 우선순위 高
-
특정도 계산식 존재
specify 특정도가 높을 수록 우선순위 高
nth-child()
특정 n번째 있는 요소 선택자
:nth-child(an + o)
o: offset 상수
n의 시작점은 0, 1, 2 ...
a, o 는 정수만 가능.
[Reference]
https://www.w3schools.com/cssref/sel_nth-child.asp
'Web' 카테고리의 다른 글
Cache vs Cookie vs Session (0) | 2020.09.18 |
---|---|
HTTP (0) | 2020.09.18 |
[CSS] position 설정시 유의점 (0) | 2020.02.19 |
Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client (0) | 2020.01.21 |
atom display automatically documentation(reference) (0) | 2020.01.16 |