가상 선택자
가상 클래스(pseudo class)
미리 정의되어있고 눈에 보이지 않음
- :link
- :visited
- :focus
- :hover
- :active
- :checked
- :enabled
- :disabled
- :empty
- :first-child
- :last-child
- :nth-child() // even, odd, 1,2,3,...
- :first-of-type
- :last-of-type
- :nth-of-type()
- :nth-last-of-type()
- :not(선택자)
가상 요소(pseudo element)
css로 element를 추가
- 렌더링 후 개발자모드를 통해 확인할 수 있지만 실제로 문서에 존재하지 않음
- ::before
- ::after
- ::first-letter
- ::first-line
- ::selection
업뎃예정
반응형