向 iPad 和 iPhone 的 div 添加滚动条的最佳方法是什么?
目前,当内容大于 div 的高度时,我对 div 使用垂直滚动条。这在 Chrome、IE 7(!) 和 Firefox 上效果很好。
然而,在 iPad 和 iPhone 等 IOS 设备上,div 没有滚动条。推荐的解决方案是什么?为简单起见,我想在所有平台上运行相同的代码:Chrome、IE 7+、Firefox、iPhone 和 iPad。
谢谢!
Currently I am using a vertical scrollbar for a div when the contents are larger than the height of the div. This works great on Chrome, IE 7(!) and Firefox.
However, on IOS devices like iPad and iPhone there are no scrollbars for divs. What is the recommended solution? For simplicity, I want to run the same code on all platforms: Chrome, IE 7+, Firefox, iPhone and iPad.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,iOS 中有一个元素内滚动条,它只是隐藏起来,直到使用它:( 您使用两根手指拖动来激活元素的滚动。
我不认为您可以覆盖隐藏滚动条的操作系统,但是
overflow-y:scroll;
很可能是您想要的。Actually there is an in-element scrollbar in iOS, it's just hidden until it's in use :( You use a two-finger drag to activate an element's scroll.
I don't think you can override the OS hiding the scrollbar, but
overflow-y: scroll;
in css is mostly likely what you want.