如何更改div部分滚动条的CSS样式?
我创建了一个固定宽度的 div 部分,而其中的内容溢出,从而显示该 div 的默认水平滚动条。现在我想设置与此示例类似的水平滚动条的样式: http:// themeefuse.com/demo/html/WebStudio/Dark/Green/index.html 但如果不使用 jquery,代码必须仅使用 CSS 和 Javascript。
我怎样才能实现这个目标?任何帮助将不胜感激。
I have created a div section with a fixed width, while the content in it is overflowing, thus displaying a default horizontal scrollbar for that div. Now I want to style that horizontal scrollbar similar to this example : http://themefuse.com/demo/html/WebStudio/Dark/Green/index.html but without using jquery, code must be using only CSS and Javascript.
How can I achieve this? Any help would be highly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 ::-webkit-scrollbar css 规则,该规则仅与基于 webkit 的浏览器兼容。在这里您可以找到一个很好的操作方法/指南 http://css-tricks.com/custom -scrollbars-in-webkit/
You have to use ::-webkit-scrollbar css rule that is compatible only with webkit-based browsers. Here you can find a good howto/guide http://css-tricks.com/custom-scrollbars-in-webkit/