滚动条样式自定义

3.14159265358979323846 / 2023-05-14 / 原文

::-webkit-scrollbar-track-piece {
    width: 1px;
    height: 1px;
    background-color: #0c1e26;
}

::-webkit-scrollbar {
    width: 1px;
    height: 1px;
    background-color: #16d0ff;
}

::-webkit-scrollbar-thumb {
    width: 1px;
    height: 1px;
    background-color: #106d8a;
}

::-webkit-scrollbar-thumb:hover {
    width: 1px;
    height: 1px;
    background-color: #16d0ff;
}