JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container" class="border">
<div class="foot border">
Some other content you want kept to the bottom
<div>supports not just text</div>
</div>
</div>
CSS
* {
padding:0; margin:0;
}
html, body {
height:100%;
}
.border {
border : 1px solid gray;
}
#container {
height:100%;
border-collapse:collapse;
display : table;
}
.foot {
display : table-row;
vertical-align : bottom;
height : 1px;
}