滚动条样式

// 滚动条宽、高
.table::-webkit-scrollbar {
 width: 6px;
 height: 10px;
}

// 默认滚动条背景色白色
.table::-webkit-scrollbar-thumb {
 background-color: white;
 border-radius: 3px;
}

// 鼠标移动上去改变滚动条的背景色
.table:hover::-webkit-scrollbar-thumb {
 background-color: #C0C4CC;
 border-radius: 3px;
}

 

posted @ 2022-07-15 15:06  yw3692582  阅读(204)  评论(0)    收藏  举报