即使光标悬停在 div 上也隐藏滚动条
我有一个 div,其中有一个上下滚动的文本,有 2 个简单的按钮和一个按钮。 JS。 我希望完全禁用滚动条,这样它们就永远不会出现在屏幕上,即使十字线位于滚动条上方。
我该如何解决这个问题?
评分此翻译: 感谢你的评分 不好 好
I have a div with a text scrolled up and down with 2 simple buttons & JS.
I wish to totally disable the scroll bars so they will never appear on the screen, even if the crosser is above them.
How do i approach this problem?
Thank Shani
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
overflow:hidden
添加到该 div 的 css 规则中。Add
overflow: hidden
to the css rule for that div.