JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div class="responsive">
<h1>Viewport Sized Typography</h1>
<h2>Viewport Sized Typography</h2>
<h3>Viewport Sized Typography</h3>
<h4>Viewport Sized Typography</h4>
</div>

CSS

html, body {
    font-size: 16px;
}
.responsive {
    font-size: 120%;
    width: 100%;
}
h1 {
    font-size: 250%;
}
h2 {
    font-size: 1.7em;
}
h3 {
    font-size: 1.4em;
}
h4 {
    font-size: 1em;
}