JSFiddle - React, Tailwind, and code Playground

by justicechan

HTML

<!DOCTYPE html>
<html lang="en" style="font-size: 62.5% !important;">
  <head>
    <title>Test</title>
  </head>
  <body>

    <div>
      Header (need to stay as it is now with smaller font)
    </div>

    <div class="content">
      Content (need to make it 100% as it will be without this styling in html element)
    </div>

    <div>
      Footer (need to stay as it is now with smaller font)
    </div>

  </body>
</html>

CSS

body {
    font-size: 137.5% !important;
}