Skip to main content

结构伪类 first-child

  • :first-child,等同于 :nth-child(1)
  • :first-child CSS pseudo-class 表示在一组兄弟元素中的第一个元素。
备注

最初定义时,所选元素必须有一个 parent。而从选择器 Level 4 开始,parent 不再是必须的。

/* Selects any <p> that is the first element
among its siblings */
p:first-child {
color: lime;
}

Loading Github Gist ...
Details