JSFiddle - React, Tailwind, and code Playground

by Malik Naik

HTML

<header>
    <h1>Header Name</h1>
</header>

<section id="content">
        <p>Temp Text</p>
</section>

<section id="footer">
    <footer>
        <p>All rights reserved</p>
    </footer>
</section>

CSS

html, body {
	height: 100%;
}
* {
	box-sizing: border-box;
}
#content {
	height: 100%;
  overflow: hidden;
	background: #ddd;
}