CSS 子元素选择器


如果您想要选择指定元素的所有直接子元素,请使用子元素选择器。

div > p

示例

您可以尝试运行以下代码来实现 CSS 子元素选择器

现场演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div > p {
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <div>
         <p>Para 1 in the div.</p>
         <!-- This is not a Child -->
         <span><p>Para 2 in the div.</p></span>
      </div>
      <p>Para 3 outside the div.</p>
   </body>
</html>

输出

更新于: 2020 年 6 月 30 日

319 次查看

开启你的职业生涯

通过完成此课程获得认证

开始学习
广告