<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>:not() selector demo</title>
</head>

<body>
  <section>
    <h2>Types of chocolates</h2>
    <ul>
      <li>Milk chocolate</li>
      <li>White chocolate</li>
      <li>Dark chocolate</li>
    </ul>
    <p>Chocolates are good stress reliever</p>
  </section>
</body>

</html>
section :not(p) {
  color: blue;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.