选择所有<p>元素,其中父元素是CSS的<div>元素

使用元素>元素选择器选择带有父元素的元素。

您可以尝试运行以下代码,以选择父元素为<div>元素的所有<p>元素,

示例

<!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>