CSS :first-of-type 选择器


实例

指定父元素的首个 p 元素的背景色:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p:first-of-type {
  6. background: red;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <p>第1个段落。</p>
  12. <p>第2个段落。</p>
  13. <p>第3个段落。</p>
  14. <p>第4个段落。</p>
  15. </body>
  16. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

选择器
:first-of-type4.09.03.53.29.6

定义和用法

:first-of-type 选择器匹配属于其父元素的特定类型的首个子元素的每个元素。

提示:等同于 :nth-of-type(1)。


语法

  1. :first-of-type {
  2. css declarations;
  3. }

分类导航