Role of CSS :only-child Selector


Use the CSS :only-child selector to style every <p> element that is the only child of its parent.

Example

You can try to run the following code to implement the :only-child selector

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:only-child {
            background: orange;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>
         <p>This is a paragraph.</p>
      </div>
      <div>
         <p>This is a paragraph.</p>
         <p>This is a paragraph.</p>
         <p>This is a paragraph.</p>
      </div>
   </body>
</html>

Updated on: 01-Jul-2020

79 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements