JSFiddle - React, Tailwind, and code Playground

by Ian Sanders

HTML

<h1>
normal
</h1>

<h1 class=revert>
revert
</h1>

<h1 class=unset>
unset
</h1>

<h1 class=initial>
initial
</h1>

CSS

h1 {
  font-weight: normal;
}

h1.revert {
  font-weight: revert;
}

h1.unset {
  font-weight: unset;
}

h1.initial {
  font-weight: initial;
}