博客列表 >结构伪类匹配子元素

结构伪类匹配子元素

手机用户7232767
手机用户7232767原创
2022年11月17日 11:35:28368浏览

/ 结构伪类 用来匹配子元素,给一个查询起点/

.list > li:nth-of-type(1){
color: rgb(49, 20, 237)
;
}

.list >:nth-of-type(5){
background-color: aqua;
}

.list > li:first-of-type {
background-color: blueviolet;
}

/ .list > li:last-of-type {
background-color: aqua;
}
/

/ a系数 n参数 b偏移量,从0开始/
.list > :nth-of-type(2n+2) {
background-color: bisque;

}

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议