nth-child 和 和 first-of-type的区别

Posted 不乱来的嫖客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nth-child 和 和 first-of-type的区别相关的知识,希望对你有一定的参考价值。

nth-child() 是指该元素处在父级元素下不论标签的类型下排第几个

 

<section>
    <div>我是一个普通的div标签</div>         //第一个div儿子  表示 p:first-child      div:first-child或者 div:first-of-type  
    <p>我是第1个p标签</p>                   //第一个P儿子    表示 p:first-of-type    div:nth-child(2) 
    <p>我是第2个p标签</p>  <!-- 希望这个变红 -->  
    <div>我是一个普通的div标签</div> 
</section>

 

first-of-type 是指该元素处在父级元素下同种标签的第几个 

以上是关于nth-child 和 和 first-of-type的区别的主要内容,如果未能解决你的问题,请参考以下文章

:nth-child 和无限滚动

IE8 :nth-child 和 :before

CSS改变nth-child()和nth-last-child()的参数灵活选择元素编号

nth-of-type和nth-child

:nth-child(even/odd) 不适用于 acf

CSS 网格布局和 nth-child