Computer >> Computer tutorials >  >> Programming >> CSS

Style every <p> element that is the last <p> element of its parent with CSS


Use the CSS: last-child selector to style every <p> element that is the last child of its parent. You can try to run the following code to implement the: last-child selector

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:last-of-type {
            background: orange;
         }
      </style>
   </head>
   <body>
      <h2>Heading</h2>
      <p>This is demo text1.</p>
      <p>This is demo text2.</p>
      <p>This is demo text3.</p>
   </body>
</html>