// 滚动条宽、高 .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; }