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


使用 CSS :only-of-type 选择器,可为其父元素的唯一 <p> 元素设置样式。

示例

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

动态演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:only-of-type {
            background: orange;
            color: white;
         }
      </style>
   </head>
   <body>
      <div>
         <p>This is demo text 1.</p>
      </div>
      <div>
         <p>This is demo text 2.</p>
         <p>This is demo text 3.</p>
         <p>This is demo text 4.</p>
      </div>
   </body>
</html>

更新时间:01-7 月-2020

97 次观看

启动您的 职业生涯

完成课程,获得认证

开始学习
广告