Selects all elements inside
elements with CSS



Use the element element selector to select all elements inside another element.

You can try to run the following code to implement element element selector,

Example

Live Demo

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

Advertisements