I am attempting to enforce that my footer goes at the bottom of my website. I do not want it to stick when I scroll, just to appear at the bottom when scrolling down the webpage.
Currently - the webpage displays with the footer sitting beneath the content.
I have added such code as bottom:0;
and found that it sticks and does not suit my website. I have also added such code as html, body { height:100%;}
as viewed on other stackoverflow questions - but have had no joy.
Any advice would be appreciated.
Code:
.footer {
background: #F37A1D;
position : absolute;
width: 100%;
border-top: 3px solid #F37A1D;
}
<div class="footer">
<div class="container">
<p>© COMPAY 2015</p>
</div>
</div>