Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这个网站上: http ://www.erikbijma.nl/
当我从这个页面 http://www.erikbijma.nl/clients/
到主页,标题徽标图像向左移动,然后返回原位。我怎样才能解决这个问题?
谢谢
是滚动条。在加载时,内容比窗口短 - 所以它不显示滚动条。但是当它完全加载时,它会变得比窗口长 - 并显示滚动条。
解决方案是始终显示滚动条 - 当内容较短时,它会显示,但会被禁用。 这就是 Facebook 的做法。
只需添加 overflow:scroll; 到您的body标签。
overflow:scroll;
body