为每

个元素(作为其父级的唯一

个元素)设置样式


使用 CSS :only-of-type 选择器为每

个元素(作为其父级的唯一

个元素)设置样式。

示例

你可以尝试运行以下代码来实现 :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

108 次浏览

开启你的 职业

通过完成课程获得认证

开始
广告