units and selectors
单位
px
%
vh, vw
em
rem
vmin, vmax
pt
ch
cm
mm
in
ex
伪元素
::before
::after
::placeholder
::selection
::first-letter
::first-line
::marker
::backdrop
伪类选择器
:first-child()
:nth-child()
:last-child()
:not()
:nth-last-child()
:nth-of-type()
:root
:first-of-type()
:last-of-type()
:nth-last-of-child()
:empty
:only-child()
:is()
关系选择器
div span 后代选择器
div > span 子代选择器
div + div 邻接兄弟选择器
div ~ div 通用兄弟选择器
属性选择器
div[foo="bar"]
div[foo]
div[foo^="bar"]
div[foo*="bar"]
div[foo~="bar"]
div[foo$="bar"]
连接选择器
:link
:visited
:target
:any-link
:local-link
交互选择器
:hover
:focus
:active
:focus-within
:focus-visible
表单控制器
:checked
:enabled/:disabled
:required
:valid/:invalid
:read-only
:default
:placeholder-shown
:indetermination
:in-range/:out-of-range
:user-invalid