JSFiddle - React, Tailwind, and code Playground

by htmlzengarden

HTML

<div id="content">
    <div id="content-inside">
        content<br />
        content<br />
        content<br />
        content<br />
        content<br />
        content<br />
    </div>
</div>
<div id="footer">
	footer
</div>

CSS

html,
body
{
	height: 100%;
	line-height: 1.5em
}
#content
{
	min-height: 100%;
}
#content-inside
{
	padding-bottom: 1.5em;
}
#footer
{
	margin-top: -1.5em;
}