JSFiddle - React, Tailwind, and code Playground
by Daniel
HTML
<div id="wrapper">
<div> <p>BOX</p> </div>
<div> <p>BOX</p> </div>
<footer>
<p>Position: ABSOLUTE;</p>
</footer>
</div>
CSS
div {
width: 100%;
height: 400px;
background-color: green;
}
#wrapper{
position: relative;
height: 100%;
min-height: 100vh;
}
footer {
width: 100%;
position: absolute;
bottom: 0;
background-color: #333;
color: white;
}
p {
text-align: center;
}
body {
margin: 0;
}