Search code examples
csssticky-footer

Sticky Footer not working for some reason


I have tried to get sticky footer working on the site below but for some reason the veritcal scroll bar appears:

http://berrisford.gumpshen.com/

Can anyone help please?


Solution

  • It's because of the border-top. Adding this to the body CSS should fix it in most modern browsers:

    body{
         -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
         box-sizing: border-box;
    }