修改chrome 滚动条样式
2020-11-02 本文已影响0人
Frank_Fang
/* chrome 滚动条 */
::-webkit-scrollbar-track-piece {
width: 10px;
background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar {
width: 10px;
height: 6px;
}
::-webkit-scrollbar-thumb {
height: 50px;
background: rgba(100, 100, 100, .3);
cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(100, 100, 100, .4);
cursor: pointer
}