JSFiddle - React, Tailwind, and code Playground

by cornelraiu

HTML

<body>
  <div class="content">
    <div class="content-inside">
      content
    </div>
  </div>
  <footer class="footer">asd</footer>
</body>

CSS

html, body {
      height: 100%;
      margin: 0;
    }
    .content {
      min-height: 100%;
    }
    .content-inside {
      padding: 20px;
      padding-bottom: 50px;
    }
    .footer {
      position:fixed;
      bottom:0;
    }