CSS :only-child 选择器的作用


使用 CSS :only-child 选择器对作为其父元素唯一子元素的所有 <p> 元素进行样式设定。

示例

您可以尝试运行以下代码来实现 :only-child 选择器

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:only-child {
            background: orange;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>
         <p>This is a paragraph.</p>
      </div>
      <div>
         <p>This is a paragraph.</p>
         <p>This is a paragraph.</p>
         <p>This is a paragraph.</p>
      </div>
   </body>
</html>

更新于: 01-07-2020

103 浏览

开启您的 职业生涯

通过完成课程认证

开始
广告