全选

内部元素

使用 CSS 选择元素


使用元素 元素选择器选择另一元素内部的所有元素。

你可以尝试运行以下代码来实现元素 元素选择器,

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div p {
            color: white;
            background-color: blue;
         }
      </style>
   </head>
   <body>
      <h1>Demo Website</h1>
      <h2>Fruits</h2>
      <p>Fruits are good for health.</p>
      <div>
         <p>This is demo text.</p>
      </div>
   </body>
</html>

更新于: 2020 年 6 月 24 日

3000+ 浏览次数

开启你的职业生涯

完成本课程获取认证

开始
广告