我把自定义滚动条放在所有浏览器上,但在Firefox上它不起作用。
::-moz-scrollbar {
width: 6px;
}
::-moz-scrollbar-track {
-moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
-moz-border-radius: 10px;
border-radius: 10px;
}
::-moz-scrollbar-thumb {
-moz-border-radius: 10px;
border-radius: 10px;
background: rgba(255,0,0);
-moz-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-moz-scrollbar-thumb:window-inactive {
background: rgba(255,0,0);
}
答案 0 :(得分:0)
Firefox不支持自定义滚动条。点击https://bugzilla.mozilla.org/show_bug.cgi?id=77790了解更多信息。 您可以使用JQuery Custom Scrollbar。