结构伪类 first-of-type
:first-of-type,等同于:nth-of-type(1)CSS 伪类
:first-of-type表示一组兄弟元素中其类型的第一个元素。
/* 选择在父元素中第一个出现的<p>,而不管其在兄弟内的位置如何 */
p:first-of-type {
color: red;
}
备注
按原来定义,所选元素必须有一个父元素。从 Selectors Level 4 开始,就不需要这样了。
:first-of-type,等同于 :nth-of-type(1)
CSS 伪类 :first-of-type 表示一组兄弟元素中其类型的第一个元素。
/* 选择在父元素中第一个出现的<p>,而不管其在兄弟内的位置如何 */
p:first-of-type {
color: red;
}
按原来定义,所选元素必须有一个父元素。从 Selectors Level 4 开始,就不需要这样了。