pseudo element
::placeholder
placeholder 색을 스타일하고 싶을 때. 클론을 두 개 사용한다.
::selection
text를 selection할 때. 즉 드래그할 때 color, background-color 등을 바꾸게할 수 있다.
::first-letter
첫 번째 글자를 바꿀 수 있게 한다.
::first-line
첫 번째 줄을 바꿀 수 있게 한다.
Recap
✔︎ States: active, hover, focus, visited, focused-within
p span 부모-자식
p > span 부모-direct child
p + span direct brothers
p ~ span brothers(don't have to be direct)
input[type="password"]
password라는 type을 가진 input만 선택.
input[type~="password"]
password를 포함하는 input 선택
input[type$="password"]
끝에 password가 오는 input 선택
input[type^="password"]
앞에 password가 오늘 input 선택