什么是伪类选择器?
伪类选择器是针对HTML的结构进行分类的选择器,特征就是位置
分为三大类
一类
e:first-child
e:last-child
e:only-child
e:nth-child(n/even/odd)隔行换色,列表换色
e:nth-last-child
二类
e:first-of-type
e:last-of-type
e:only-of-type
e:nth-of-type
三类
e:root
e:empty
e:target
e:not
波浪选择器连接符~
作用:两个css选择器通过波浪线连接起来,但只作用于后一个css选择器,并且必须出现前一个选择器才符合结构,它们必须是同级的,拥有共同的父节点
1
2
![此时只有第二个div字体颜色变成了粉红色](https://img-blog.csdnimg.cn/20200303181410467.png)
来源:CSDN
作者:weixin_43806532
链接:https://blog.csdn.net/weixin_43806532/article/details/104536852