设置样式为每个

没有子元素的元素使用 CSS


若要设置没有子元素的每个 <p> 元素的样式,请使用:empty 选择器 t。你可以尝试运行以下代码来实现:empty 选择器

示例

现场演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p.demo {
            width: 300px;
            height: 20px;
            background: gray;
         }
         p:empty {
            width: 150px;
            height: 20px;
            background: orange;
         }
      </style>
   </head>
   <body>
      <p class = "demo">This is demo text. Below is empty text.</p>
      <p></p>
   </body>
</html>

更新于:30-6 月 -2020

819 查看次数

开启您的 事业

通过完成课程获得认证

开始
广告