Remove empty space after HTML body

See here for the original answer.

I can help! The problem is the height of your body, which can be solved with the following CSS:

body {
  min-height: 100%;
}

Then to give the appearance of no empty space, you can position your footer element all the way at the base of the page, like so:

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

Tags

  1. html (Private)
  2. css (Private)
  3. stack-overflow (Private)
  4. answer (Private)