How can I remove mysterious white-space?

2019-06-24 06:13发布

This is a very puzzling problem for me.

If you visit this site on Safari there'll be added an extra 4-500px scrollable whitespace. Obviously it's not supposed to be like this, but I can't seem to grasp what creates this space :S

Inspecting reveals nothing to me, as it seems to be a part of the body, but there's no content in it, so why would it create the space?

If anyone could be able to help me that'd be great :)

2条回答
Melony?
2楼-- · 2019-06-24 06:13

Try this for your body on the CSS

body{
    height: auto;
}
查看更多
家丑人穷心不美
3楼-- · 2019-06-24 06:38

Add to your .shiftnav-wrap class

height: auto;

Or add to your wrapper id

#wrapper {
  height: auto;
}

On your style.css

查看更多
登录 后发表回答