基于webkit的浏览器:
/* 滚动条样式 */
::-webkit-scrollbar{
width: 4px;
height: 6px;
}
::-webkit-scrollbar-thumb{
border-radius: 1em;
background-color: rgba(50,50,50,.3);
}
::-webkit-scrollbar-track{
border-radius: 1em;
background-color: rgba(50,50,50,.1);
}
火狐:
overflow-y: scroll;
scrollbar-color: transparent transparent;
scrollbar-track-color: transparent;
-ms-scrollbar-track-color: transparent;
可以实现火狐浏览器下滚动条的隐藏。
https://www.cnblogs.com/cangqinglang/p/10613906.html