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>

输出

更新于: 30-Jun-2020

319 次浏览

开启你的 职业 生涯

完成课程并获得认证

开始
广告