<main>
  <h2>CSS `all` Property</h2>
  <hr />
  <br />
  <a href="#">norma styled</a>
  <br />
  <br />
  <a href="#" class="initial">initial</a>
  <br />
  <br />
  <a href="#" class="inherit">inherit</a>
  <br />
  <a href="#" class="unset">unset</a>
</main>
main {
  padding: 10px;
  font-family: 'Century Gothic';
  text-align: center;
}

a {
  color: crimson;
  font-weight: 900;
  text-decoration: none;
}
a:hover {
  color: yellowgreen;
}

a.initial {
  all: initial;
}
a.inherit {
  all: inherit;
}
a.unset {
  all: unset;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.