How can I stick this footer to the bottom of the page:
<footer>
<p>This is a Footer, Copyright © © 2017</p>
</footer>
https://jsfiddle.net/1d9m2frt/2/
footer {
text-align: center;
background-color: #e8491d;
color: #ffffff;
padding: 20px;
margin-top: 20px;
}
I tried position: fixed;
but it doesn't stay fixed on the bottom of the page.