JSFiddle - React, Tailwind, and code Playground

by Nick Iaconis

HTML

<div>this is the default text size</div>
<div class='percent'>this text size has been changed via percent</div>
<div class='em'>this text size has been changed via em</div>
<div class='vw'>this text size has been changed via vw</div>

CSS

.percent {
    font-size: 120%;
}

.em {
    font-size: 1.2em;
}

.vw {
    100vw;
}