伪类 | 用途 |
---|---|
:link | 未选择过的超链接 |
:visited | 已选择过的超链接 |
:hover | 鼠标悬停 |
:active | 鼠标按下 |
:first-child | 第一个子元素 |
:last-child | 最后一个子元素 |
:nth-child | 选中an+b个子元素 a和b是常量 n得知从0开始递增 |
:first-of-type | 选中第一个指定类型的子元素,第一个子元素可以不是指定的 |
:last-of-type | 选中最后一个指定类型的子元素 |
:nth-of-type | 选中an+b个指定类型子元素 a和b是常量 n得知从0开始递增 |
<div contenteditable>
<p>adadasdadasd</p>
</div>