CSS :first-of-type 选择器的作用


使用 CSS :first-of-type 选择器为其父元素的第一个 <p> 元素设置 CSS 样式。

示例

您可以尝试运行以下代码来实现 :first-of-type 选择器

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:first-of-type {
            background: orange;
         }
      </style>
   </head>
   <body>
      <p>This is demo text1.</p>
      <p>This is demo text2.</p>
   </body>
</html>

更新时间:2020 年 6 月 30 日

112 次浏览

开启你的 职业生涯

完成课程,获取认证

立即开始
广告