CSS: 选择符
Opened this issue · 0 comments
leslie1943 commented
CSS: 选择符
id选择器
: (#myId)类选择器
: (.myClassName)标签选择器
: (div, h, p)后代选择器
: (h1 p)相邻后代(子)选择器
: (ul > li)兄弟选择器
:(li~a)相邻兄弟选择器
:(li+a)属性选择器
:(a=[rel="external"])伪类选择器
:(a:hover, li:nth-child)伪元素选择器
:(::before, ::after)通配符选择器
:(*)