JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<!-- Text inside p will inherit a font size of a body -->
<p>Some text</p>
<div>
    <!-- Even if it inside another element like div -->
    <p>Foo</p>
    <span>Text</span>
</div>

CSS

/* Applying font size to the body */
body {
    font-size: 1.5em;
}