JSFiddle - React, Tailwind, and code Playground

by ltdeta

HTML

<div>
    Content<br/>
    Content<br/>
    Content<br/>
</div>
<footer>Footer</footer>

CSS

body {
    height: 100%;
    margin: 0;
}
html {
    padding-bottom: 50px;
    min-height: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
}

footer {
    position: absolute;

    left: 0;
    right: 0;
    height: 50px;
    background-color: red;
}