Search code examples
htmlcsswebcenterfooter

How can I make my footer center to the bottom of the page?


I'm having trouble centering my footer to the bottom of the page. Here's my code

footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 400px;
text-align: center;
}
<footer align="center">
    <p>March 25, 2</p>
</footer>

Solution

  • Just set width to 100%

    width: 100%;