如何补偿浏览器中的滚动条?

发布于 2025-01-06 20:32:46 字数 35 浏览 1 评论 0原文

当滚动条出现并将包装器从中心移开时,有没有办法动态补偿?

Is there way to dynamically compensate for when the scroll bar appears and it shifts the wrapper over from center?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早茶月光 2025-01-13 20:32:46

对于对滚动条消失非常敏感的布局(例如居中元素),我倾向于在每个页面上强制使用滚动条:

body { overflow-y: scroll }

这是我认为 Internet Explorer 默认情况下处理得更好的一件事:它总是为以下内容保留空间:滚动条,在同一站点上的页面之间切换时可以提供更流畅的体验。

What I tend to do with layouts that are very sensitive to the scroll bar disappearing (like centered elements) is enforce a scroll bar on every page:

body { overflow-y: scroll }

this is the one thing that I think Internet Explorer handles better by default: It always reserves space for the scoll bar, allowing for a much smoother experience when switching between pages on the same site.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文