-
e:nth-child(n)
n从1开始,用于父元素身上 -
e[att^='val']
匹配具有att属性,且值以val开头 -
e[att$='val']
匹配有att属性,且值以val结束的e元素 -
e[att*='val']
匹配有att属性,且属性中包含val -
e:root
匹配文档的根元素,在html中,文档的根元素永远是html -
e:nth-last-child(n)
n从1开始,用于父元素身上,匹配倒数第几个子元素 e:last-child
-
e:empty
匹配没有任何子节点的元素 -
e:target
匹配具有url指向的 -
e::selection
匹配用户选中的元素或者高亮的部分 -
e:not(s)
匹配所有不匹配简单选择符s的元素 -
e~f
匹配e元素之后的兄弟元素f
表单中
e:enabled
e:disabled
e:checked