css修改滚动条样式

css修改滚动条样式

 ::-webkit-scrollbar {
    width: 8px;
    height: 15px;
}

::-webkit-scrollbar-track-piece {
    background-color: #d2d2d2;
}

::-webkit-scrollbar-thumb:vertical {
    background-color: #8e8e8e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: #8e8e8e;
    border-radius: 4px;
}

你可能感兴趣的:(css)