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.
我正在开发这个管理数据库的 Web 应用程序。每次我去这个有一个大列表的特定页面时,垂直滚动条都会出现在浏览器的右侧。
然而,这使我的整个页面向一侧移动了一点。如果您查看页面顶部的水平菜单栏,则最明显。
有没有办法克服这个?谢谢你。
您可以通过将以下内容应用于您的身体来启用滚动条始终显示:overflow-y:scroll;
overflow-y:scroll;
body { background:#DDDDDD; overflow-y:scroll; }