千家信息网

css中选择器nth-child()和nth-of-type()怎么用

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,小编给大家分享一下css中选择器nth-child()和nth-of-type()怎么用,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!一、:nth-child()和:nth-of-t
千家信息网最后更新 2025年01月19日css中选择器nth-child()和nth-of-type()怎么用

小编给大家分享一下css中选择器nth-child()和nth-of-type()怎么用,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

  一、:nth-child()和:nth-of-type()的支持度

  所有主流浏览器均支持:nth-child()和:nth-of-type()选择器,除了IE8及更早的版本。

  二、:nth-child()和:nth-of-type()的一般使用方法

  1、:nth-child(x);选择第x的元素

  2、:nth-child(x*n)x的n倍元素

  3、:nth-child(n+x);选择=>x的元素

  4、:nth-child(-n+x)选择=

  5、:nth-child(nx+1);nx-1隔开n*x选取一个

  6、nth-child(odd)/nth-child(even)奇数偶数

  使用的时候请把《*》删除

  三、:nth-child()和:nth-of-type()的一些不同之处

  :nth-child()--》

  混合型跳过模式:这个是我自己取得名字。

  意思就是说同一个父级下如果我们选择了第二个元素p:nth-child(2)。

  但是第二个元素不是p标签而是其他的标签,那么选择的标签不成立,选择不了。

  代码如下:

  

  

CGLweb前端

  

CGLweb前端

  

CGLweb前端

  

  

  #a1p:nth-child(2){background:#000000

  

  :nth-of-type()--》

  匹配标签选择模式,比如说代码div:nth-of-type(2n),不考虑其他的标签,

  先把同级div排列一下,然后2的倍数的时候选择他。

  

  

p1

  

div1

  

p2

  

div2

  

div3

  

p3

  

div4

  

div5

  

div6

  

  

  #a2div:nth-of-type(2n){background:#000000;color:#fff;}

  

看完了这篇文章,相信你对"css中选择器nth-child()和nth-of-type()怎么用"有了一定的了解,如果想了解更多相关知识,欢迎关注行业资讯频道,感谢各位的阅读!

0