代码:
/* 修改表格的滚动条*/
/*.el-table__body-wrapper::-webkit-scrollbar {
width: 5px;
height: 10px;
}*/
/* 表格滚动条的滑块*/
/*.el-table__body-wrapper::-webkit-scrollbar-thumb {
background-color: #409EFF;
border-radius: 3px;
}*/
/**修改全局的滚动条*/
/**滚动条的宽度*/
::-webkit-scrollbar {
width: 5px;
}
/*滚动条的滑块*/
::-webkit-scrollbar-thumb {
background-color: #409EFF;
border-radius: 3px;
}
效果图:

原文:https://www.cnblogs.com/nanxixi/p/14888409.html