1

So I am making a website like a little mock up one as I have just started learning and the footer just won't stay at the bottom and it is killing me. When I load the page it starts at the bottom and then when I scroll down it stays in the same place and is stuck where it started and won't start at the bottom of the page.

#footer {
    text-align: right;
    padding: 10px;
    background-color: #07889B;
    position: absolute;
    bottom: 0;
    width: 1200px;

}

Max Loyd
  • 408
  • 6
  • 21

1 Answers1

1

This should work

#footer {
    text-align: right;
    padding: 10px;
    background-color: #07889B;
    position: fixed;
    bottom: 0;
    left:0;
    width: 1200px;//or width:100%;
}
Sameer
  • 383
  • 1
  • 10