垂直滚动条样式在Firefox浏览器中不起作用

时间:2017-12-28 13:05:19

标签: html css firefox scrollbar

适用于Chrome,Opera,Safari的滚动条代码如下:

.scroll_bar::-webkit-scrollbar{
    width: 20px;
}
.scroll_bar::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0px 0px 6px #0067ab;
    border-radius: 5px;
}
.scroll_bar::-webkit-scrollbar-thumb{
    -webkit-box-shadow: inset 0px 0px 6px #0067ab;
    border-radius: 5px;
}

我应该为Firefox做些什么?

3 个答案:

答案 0 :(得分:0)

Here you can see it on css tricks 只需更改使用-moz而不是-webkit

答案 1 :(得分:0)

你想用这个吗?

custom scroll bar using js

答案 2 :(得分:0)

您的问题在 Mozilla Searchfox 上有解决方案。

scrollbar[orient='vertical'] {
  margin-left: -4px;
  margin-top: 1px;
  min-width: 3px;
  max-width: 3px;
}

scrollbar[orient='vertical'] thumb {
  max-width: 3px !important;
  min-width: 3px !important;
}
相关问题