JSFiddle - React, Tailwind, and code Playground

holding footer down

by jonchius

HTML

<header>
  Header
</header>
<section>
  Content
</section>
<footer>
  Footer
</footer>

CSS

body {
  margin: 0;
}
header, section, footer {
  padding: 20px;
}
header, footer {
  background: #000;
  color: #fff;
  min-height: 10vh;
}
section {
  min-height: 80vh;
}

JavaScript

/* demonstrating bottom-flushed footer (no JS) */