JSFiddle - React, Tailwind, and code Playground
by SpAm
HTML
<div id="smallFont">
<p>Inherited</p>
</div>
<div>
<p>Inherited</p>
</div>
<div id="bigFont">
<p>Inherited</p>
</div>
CSS
#smallFont {
font-size:10px;
}
#bigFont {
font-size:20px;
}
p {
font-size:2em;
}