JSFiddle - React, Tailwind, and code Playground

by Lynda333

HTML

<p> Some Content </p>

<div id="footer">
<div class="container">
<div class="row">
    <div class="twelvecol">
        <p class="copyright-text">&copy; 2012 Lorum Ipsum</p>
    </div>
</div>
</div>
</div>

CSS

html, body{
        font-size:1em;
    font-family: "ff-dagny-web-pro", Helvetica, Arial, sans-serif;
       line-height:1.438em;
    color:#222;
    margin: 0;
    padding: 0;
    text-align: justify;

background: rgb(0,0,0); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,0,0,1) 25%, rgba(209,209,209,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,rgba(0,0,0,1)), color-stop(100%,rgba(209,209,209,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(0,0,0,1) 25%,rgba(209,209,209,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */

}


#footer{
    margin-top:1.875em;
    background: none repeat scroll 0 0 #666666;
    border-top: 0.313em solid #E31836;
    position:absolute;
    right:0;
    bottom:0;
    width: 100%;
margin: 0 auto;
padding:20px;
    
    p{ color: #f3f3f3; }