css custom browser scroll bar color and style

Customize the style of the browser scroll bar:

 /* 浏览器滚动条整体的宽度 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
/* 滚动条里面的轨道 */
::-webkit-scrollbar-track {
    background-color: transparent;
}
/* 滚动条上的滚动滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #ddd;
}

The rendering of the browser scroll bar after modification:

 

Guess you like

Origin blog.csdn.net/qq_41964720/article/details/131964301