element-ui table 滚动条变细

在全局样式中加入以下css,只对Google浏览器生效
// 滚动条的宽度
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
// 滚动条的滑块
::-webkit-scrollbar-thumb {
background-color: #a1a3a9;
border-radius: 4px;
}

你可能感兴趣的:(vue开发,css,scrollBar,elment-ui,table,table)