谷歌浏览器 滚动条样式设置收藏

::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(241,241,241);
    -webkit-border-radius: 2px
}

::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: rgb(169, 169, 169);
    -webkit-border-radius: 2px
}

::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: rgb(169, 169, 169);
    -webkit-border-radius: 2px
}

你可能感兴趣的:(css)