JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<header>HEADER</header>
<content>CONTENT</content>
<footer>FOOTER</footer>
</body>
CSS
body {
min-height: 100vh;
position: relative;
margin: 0;
}
footer {
position: absolute;
bottom: 0;
}
* {
width: 100%;
text-align: center;
}
footer {
background: yellow;
}