CSS Descendant Selector


The descendant selector in CSS is used to match all elements that are descendants of a specified element.

Example

You can try to run the following code to implement CSS Descendent Selector:

Live Demo

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

Output

Updated on: 22-Jun-2020

209 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements