JSFiddle - React, Tailwind, and code Playground

by mikeys4u

HTML

<div class="stickywrapper">
                <p>Your website content here.</p>
                <div class="push"></div>
            </div>
            <div class="stickyfooter">
               Copyright (c) 2015
            </div>

CSS

* {
    margin: 0;
    }
    html, body {
    height: 100%;
    }
    .stickywrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -4em;
    }
    .stickyfooter, .push {
    height: 4em;
    }