JSFiddle - React, Tailwind, and code Playground

by eapo

HTML

<html>
    <body>
        <h1>I am a Heading</h1>
        <p>Here is some paragraph text at 3 vmin</p>
    </body>
</html>

CSS

h1 {font-size: 17vmin;}
p {font-size: 13vmax;}

JavaScript

causeRepaintsOn = $("h1, h2, h3, p");
$(window).resize(function() {
    causeRepaintsOn.css("z-index", 1);
});