使用 CSS 对无子代

元素设置样式


要使用 CSS 对无子代的每个 <p> 元素设置样式,请使用:empty 选择器。你可以尝试运行以下代码,以实现: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>

更新日期:2020-6-30

815 浏览量

开启你的 职业生涯

完成课程,取得认证

开始
广告