滚动条在chrome和safari中运行良好,但是在mozilla中它的运行方式不合适,下面是我的代码,我可以使用jquery或javaScript轻松完成这个,但首先寻找css解决方案。
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-button {width: 8px;height:5px;}
::-webkit-scrollbar-track {background:none;}
::-webkit-scrollbar-thumb {background:#000;}
::-webkit-scrollbar-thumb:hover {background:#000;}
答案 0 :(得分:1)
Mozilla它不支持使用css的自定义滚动条,使用这样的插件:jQuery Scrollbar
答案 1 :(得分:0)
::-webkit-scrollbar仅适用于基于WebKit的浏览器(例如Google Chrome)。 Firefox不支持它,请检查here。