美文网首页
div:first-child、div:first-of-typ

div:first-child、div:first-of-typ

作者: 张亚群 | 来源:发表于2018-10-16 17:46 被阅读18次

    :first-of-type 表示一组兄弟元素中其类型的第一个元素

    html部分:

    <div class="ct02">
      <p>012</p>
      <p>034</p>
      <h3>056</h3>
    </div>
    <div class="ct02">
      <h3>078</h3>
      <p>0910</p>
    </div>
    

    css

    .ct02 p:first-of-type:
    .ct02 p:first-of-type{
        color:red
    }
    

    显示:


    image.png 得到: image.png

    css

    .ct02 p :first-of-type
    .ct02 :first-of-type{
      color:red
     }
    
    显示: image.png

    得到:


    image.png

    :first-child 表示在一组兄弟元素中的第一个元素

    css

    .ct02 p:first-child
    .ct02 p:first-child{
       color:red
     }
    

    显示:


    image.png

    得到:


    image.png

    css部分:

    .ct02 :first-child
     .ct02 :first-child{
        color:red
      }
    
    显示: image.png

    得到:


    image.png

    相关文章

      网友评论

          本文标题:div:first-child、div:first-of-typ

          本文链接:https://www.haomeiwen.com/subject/qgbhzftx.html