0

While inspecting with the device toolbar in Chrome I have this weird whitespace underneath the HTML tag. The whitespace dissapears when I disable the device toolbar ... There are some other issues as well, but we'll leave those for now.

Would love to hear from you all. Thanks in advance.

1 Answers1

0

It seems that your body is 100% height, but your HTML parent tag isn't.

That way, your body tag take 100% height of "nothing" height. You should put an height or min-height property on parent (<html>) :

html, body{
    min-height:100%;
}
André DS
  • 1,823
  • 1
  • 14
  • 24