:first-of-type
:first-of-type选择器匹配元素其父级是特定类型的第一个子元素。
语法
p:first-of-type { background:#ff0000; }
值
例子
HTML
<h1>This is a heading</h1> <p>The first paragraph.</p> <p>The second paragraph.</p> <p>The third paragraph.</p> <p>The fourth paragraph.</p>
CSS
b:first-of-type { background:#ff0000; }
执行结果
This is a heading
The first paragraph.The second paragraph.
The third paragraph.
The fourth paragraph.