修改浏览器滚动条样式
更新:HHH   时间:2023-1-7


::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    border-radius: 6px;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background-color: #ddd;
    border-radius: 6px;
}
返回web开发教程...