:empty
![[2021/12/31]국비지원 CSS3 11-(1) psuedo-class, property selector](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fdq0IGQ%2Fbtrsc1dzyOs%2FAAAAAAAAAAAAAAAAAAAAAOyV_4E2FPPyMOwJd75gHpKsXBegHx816RqtDSjrbfG8%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1756652399%26allow_ip%3D%26allow_referer%3D%26signature%3De6S90lInht0IehgAl4qOcDmaMxI%253D)
[2021/12/31]국비지원 CSS3 11-(1) psuedo-class, property selector
psuedo-class :first-child :nth-child(n) : n번째 :nth-child(odd) : 홀수번째 :nth-child(even) : 짝수번째 :nth-child(3n) : 3배수 :last-child :nth-last-child(n) : 뒤에서 n번째 :empty : 비움 :first-of-type :nth-of-type(n) :nth-last-of-type(n) :last-of-type :only-child :only-of-type dl dt dd에서는 type이 더 직관적 (이라고 함) 1 2 3 4 5 6 7 9 dt dd dt dd dt dd dt dd 결과물 property selector : 속성선택자 띄운 칸 : 하위의 모든 해당 element > : 자식 eleme..