Search code examples
htmlcsstwitter-bootstrap

Getting rid of white space below footer


I'm using the bootstrap 3.0 framework and no matter what I do I cannot get the little white space after the footer to disappear.It only shows in Chrome though, in IE it's fine.

I've used min-height, overflow:hidden,different margins still nothing.

I'm sure there is some simple fix that eludes me.However it is driving me mad.

Can anyone offer a solution to this?


Solution

  • In your CSS, you are using 50px margin for both the top and bottom of the footer.

    Remove the margin from your footer.

    If you want to apply margin only on the top of the footer, use this:

    footer {
      margin: 50px 0 0 0; /* or just use:  margin-top: 50px;*/
    }
    

    UPDATED CODE