:root문서의 최상위 태그(html)를 선택한다. 태그:nth-child(n)n번째 태그가 일치하면 선택한다. (여기서 n은 수열이다. 예를 들어 2n+1) 태그:nth-last-child(n)뒤에서부터 n번째 태그가 일치하면 선택한다. 태그:nth-of-type(n)일치하는 태그들 중, n번째 태그를 선택한다. 태그:nth-last-of-type(n)일치하는 태그들 중, 뒤에서부터 n번째 태그를 선택한다. 태그:first-chlid첫번째 태그가 일치하면 선택한다. 태그:last-chlid마지막 태그가 일치하면 선택한다. 태그:first-of-type일치하는 태그들 중, 첫번째 태그를 선택한다. 태그:last-of-type일치하는 태그들 중, 마지막 태그를 선택한다. 태그:only-child이 태그가 ..