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.
我有 5 个 DIV,它们使用 Twitter 引导程序来显示或隐藏其中的信息。当我的页面呈现时,其中两个框默认打开。当打开的框的高度高于屏幕时,页面被强制滚动到底部。
我想让页面保持滚动到顶部,同时强制溢出到底部,但不知道该怎么做。
用这个 CSS 规则解决了这个问题:
body.modal-open { overflow: hidden ; }
不需要额外的 JavaScript,因为引导模式会自动将 'modal-open' 类添加到正文中。