CSS选择器

类选择器:
class=“xxx”
.xxx{}
id选择器:
id=“xxx”
井号xxx
通配符选择器:
星号 选择所有
属性选择器:
[att] [att=val] [att~=val] 属性中包含val的都选中
[att^=val] 以val开头的 [att$=val] 以val结尾的
伪类选择器:
a:link{} 未点击时
a:visited{} 已经点击过
a:hover{} 放在上面
a:active{} 点击时
伪元素选择器:
::xxx
继承:
在某个元素上的样式,它里面的子元素能继承它的样式。

https://www.quirksmode.org/css/selectors/

你可能感兴趣的:(CSS选择器)