css之选择器
2021-04-08 23:26
标签:原因 第一个 拓展 div :link round 并集 back html 常用选择器 元素选择器 id选择器 类选择器 通配选择器 交集选择器 并集选择器 子元素选择器 后代选择器 兄弟选择器(两种) 语法:一般都是使用 : 开头 :first-child 第一个子元素 :last-child 最后一个子元素 :nth-child( ) 选中第n个子元素 例子: 但是:nth-child()是根据所欲元素排序的,为了对指定类型排序操作,所以又有 :first-of-type :last-of-type :nth-of-type() 例子 伪类拓展补充: :link 用来表示没访问过的链接(正常链接) :visited 用来表示访问过的链接(由于隐私的原因,所有visited这个伪类只能修改链接的颜色) :hover 用来表示鼠标移入的状态 :active 用来表示鼠标点击 语法:使用 :: 开头 例子: css之选择器 标签:原因 第一个 拓展 div :link round 并集 back html 原文地址:https://www.cnblogs.com/xiaoran991/p/12454327.html
复合选择器
关系选择器
属性选择器
伪类选择器
ul > li:first-child{
color: red;
}
ul > li:last-child{
color: red;
}
ul > li:nth-child(even){
color: red;
}
…………
ul > li:first-of-type{
color: red;
}
/* 这里 :not() 也是一个用法
ul > li:not(:nth-of-type(3)){
color: red;
}
a:link{
color: red;
font-size: 50px;
}
a:visited{
color: red;
}
a:hover{
color:red;
font-size: 50px;
}
a:active{
color: red;
font-size: 50px;
}
伪元素选择器
p::first-letter{
font-size: 50px;
}
p::first-line{
background-color: red;
}
p::selection{
background-color: red;
}
p::before{
content: 'abc';
color: red;
}
p::after{
content: 'haha'
color: red;
}