美文网首页
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

    :first-of-type 表示一组兄弟元素中其类型的第一个元素 html部分: css .ct02 p:f...

  • :first-child

    :first-child 选取父元素的第一个子元素 div p:first-child 表示的是div下第一个子元...

  • CSS选择器学习笔记:

    关系选择器: div div:div之后的所有div,即子div,孙div,重孙div等等等,只要包含在我div里...

  • Markdown语法

    标题 引用 多层嵌套 行内标记 < div> < div> < div> < div> < /div> ,其...

  • 选择器类型

    标签选择器 div{ color:red; }

    a
    b
    类选...

  • h1

    div (0) div /div (1)设置了float div /div (2)设置了f...

  • CSS学习笔记三——CSS选择器

    选择器 分类 * .class #id div div,p div p div>p div+p [attribut...

  • jquery

    var div =('div')通过div标签选择出的jquery对象 赋给$div变量 $div.addClas...

  • 28 jQuery面试题

    1. div 和 $div 的区别和联系 div 和 $div 的联系是:$(div) 可以将 div 封装成一个...

  • 前端—浮动(float)

    浮动 我们可以这样理解浮动,图中有页面,div1,div2,div3,div4。 div1 div2 div3...

网友评论

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

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