:target伪类,用于定位元素
<a href="#xxx">点击我</a>
<p id="xxx">看我看我看我</p>
p:target{
color:red;
}
:lang
:nth-child
选中一类元素
:nth-child(an+b){}
例如
li:nth-child(3n+1){color:red}
其中,2n和2n+1可以用even和odd代替
:nth-of-type
:first-child
:last-child
:not()
排除匹配的元素
比如 img:not([alt])选择没有写alt属性的图片
伪元素
::first-letter
弟弟选择器(只能选下面的)
+下一个
~只要是兄弟
时间: 2024-10-20 17:30:43