首页 > 作文

CSS3结构性伪类选择器九种写法

更新时间:2023-04-03 16:35:32 阅读: 评论:0

一、x:nth-child(n)

example source code :
li:nth-child(3) {
color: red;
}

  接下来的几个伪类选择器使用上非常类似,功能也比较接近。

  :nth-ch关爱留守儿童活动方案ild(n),用于匹配索引值为n的子元素。索引值从1开始。

  x:nth-child()用法实际上有三种变化,demo的用法是最简单的,x:nth-child()更强大的用处在于奇偶匹配,明河不展开讲,有兴趣的请看《understanding :nth-child pudo-class expressions》,《css3 :nth-child()伪类选择器》

二、x:nth-last-child(n)

example source code :
li:nth-last-child(2) {
color: red;
}

  :nth-child(n),是从第一个开始算索引,而x:nth-last-ch梅花的外形ild(n)是从最后一个开始算索引。

三、x:nth-of-type(n)

example source code:
ul:nth-of-type(3) {
border: 朋友生日送什么礼物1px solid black;
}

  nth-of-type与nth-child的效果是惊人的相似,想要更多的了解nth-of-type请看《alternative for :nth-of-type() and :nth-child()》,:nth-of-type(n)

四、x:nth-last-of-type(n)

example source code :
ul:nth-last-of-type(3) {
border: 1px solid black;
}

  :nth-last-child冰粥的做法效果相似。

五、x:first-child

example source code:
ul li:first-child {
b郑州牧专order-top: none;
}

  匹配子集的第一个元素。ie7就可以支持了,这个伪类还是非常有用的。

六、x:last-child

example source code :
ul > li:last-child {
color: green;
}

  与:first-child效果相反

  留意ie8支持:first-child,但不支持:last-child。

七、x:only-child

example source code:
div p:only-child {
color: red;
}

   这个伪类一般用的比较少,比如上述代码匹配的是div下的有且仅有一个的p,也就是说,如果div内有多个p,将不匹配。

八、x:only-of-type

example source code:
li:only-of-type {
font-weight: bold;
}

  与:only-child类似。

九、x:first-of-type

example source code :
ul:first-of-type{
font-weight: bold;
}

本文发布于:2023-04-03 16:35:30,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/5abf1e7e69c83a64a629517054850e6e.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:CSS3结构性伪类选择器九种写法.doc

本文 PDF 下载地址:CSS3结构性伪类选择器九种写法.pdf

标签:索引   第一个   是从   效果
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图