JSFiddle - React, Tailwind, and code Playground

by davidxmartins

HTML

<!DOCTYPE html>

     

 
    <div id="container">
        <div class="divtext">
            Resize the browser window to see 
            how the font size scales.
        </div>
    </div>

CSS

#container {
          display: inline-block;
          background-color: green;
          padding: 0.5vw 1vw;
        }
        .divtext {
          display: table;
          color: white;
          font-family: poppins;
          font-size: 4.2vw;
        }