指南针 SCSS +蓝图:设置溢出
我通过 Compass 使用蓝图,但在较长的页面上没有滚动条,似乎默认溢出设置为“隐藏”。这是默认设置,所以我猜测除了我之外,其他人都在使用一些方法/结构。如果不是,我该如何设置“溢出:滚动”。
I am using blueprint via Compass but have no scroll bars on longer pages, it seems the default overflow is set to 'hidden'. This is the default so I am guessing there is some method/structure everyone else is using apart from me. If not how do I set 'overflow:scroll'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,做了一些萤火虫研究,似乎人们不会为网站使用一个主容器,而是在单独的位中使用它,所以最好的方法是将您想要滚动的 div 设置为溢出:可见。
例如,您可能有 div#main,然后将其设置为溢出,但您可以将 div#pageHeader 保留为溢出隐藏
So did a bit of firebug research and it seems people don't use one main container for the site but use it in separate bits so then the best method is to set the divs you do want to have a scroll in to overflow:visable.
e.g. you might have div#main which you then set to overflow but your div#pageHeader you can leave as overflow hidden