/*浏览器滚动条样式*/
/* width */
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
/* Track */
::-webkit-scrollbar-track {
background: rgb(255, 255, 255);
border-radius: 8px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(201, 201, 202);
border-radius: 8px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(162, 162, 163);
}
原文地址:https://www.cnblogs.com/hglibin/p/9751312.html
时间: 2024-11-08 23:00:21