JSFiddle - React, Tailwind, and code Playground

by richlewis14

HTML

<div id="holder">
   

    
    <div class="container">
<div class="row">
<div class="span12">
    <div id="footer">
        <ul class="footer">
    <li>Website built by <a href="#">Fishplate</a></li>&nbsp;&nbsp;
    <li>Email:[email protected]</li>
    <ul>
    </div>
    

</div>
</div>
</div>

</div>

CSS

html,body{
    height: 100%
}

#header{
    background-color: yellow;
    height: 100px;
    width: 100%;
}

#holder {
    min-height: 100%;
    position:relative;
}

#body {
    padding-bottom: 50px;
}

#footer{
    background-color:gray;
    bottom: 0;
    height: 50px;
    left: 0;
    position: absolute;
    right: 0;
}
ul.footer
{
    margin-top:10px;
    text-align:center;
}

ul.footer li
{
    color:#333;
    display:inline-block;
}