如何防止滚动出现时页面内容移动?
我目前正在从事有关汽车旅行的项目http://wayfi.ru,
最近遇到了一个问题 - 页面内容发生变化出现垂直滚动后向左移动。如何防止这种情况发生?
据我所知,人们总是可以显示禁用的滚动并在必要时启用它。
您知道更好的技术来实现这一目标吗?
I am currently working on project about car travelling http://wayfi.ru and
I have encountered a problem recently - page content shifts to the left after vertical scroll appears. How to prevent this?
As I know, one could always display disabled scroll and make it enable if there is necessary.
Do you know better technique to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
恐怕除了始终显示滚动条(无论是否处于活动状态)之外,我不知道还有其他方法可以做到这一点。
我认为最简单的方法是:
这样,即使在没有滚动的页面上,也会为滚动条保留空间,并且内容不会在页面之间跳转。
I'm afraid I do not know of any other way to do this apart from always showing the scrollbar, active or not.
The simplest way I think is:
This way, even on pages without scrolling there is space reserved for the scrollbar and the content won't jump around between pages.