去除element-ui table表格右侧滚动条的高度

/* //element-ui table的去除右侧滚动条的样式 */
::-webkit-scrollbar {
1px;
height: 1px;
}
/* // 滚动条的滑块 */
::-webkit-scrollbar-thumb {
background-color: #a1a3a9;
border-radius: 0px;
}
原文地址:https://www.cnblogs.com/xiaoxiaoxun/p/11256050.html