Google browser scroll bar style settings

Sometimes the graphic design of the good-looking interface, but the scroll bar style interface that appears when the screen size changes appear out of place, it is very dissonant, it is necessary to set the scroll bar style, only Google, not test other browsers

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

::-webkit-scrollbar-thumb {
    background-color: rgb(59, 182, 225);
    transition: all .2s;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(128, 241, 63, 0.7);
}
Published 28 original articles · won praise 1 · views 8722

Guess you like

Origin blog.csdn.net/moqiuqin/article/details/103960733