🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## :first-of-type 选择器 ### 定义和用法 :first-of-type选择器匹配元素其父级是特定类型的第一个子元素。 **提示:** 等同于 :nth-of-type(1)。 ## 实例--指定其父级的第一个p元素的背景色: ``` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>W3Cschool教程(w3cschool.cn)</title> <style> p:first-of-type { background:#ff0000; } </style> </head> <body> <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> </body> </html> ```