解决方法
body .el-table th.gutter{
display: table-cell!important;
}
body .el-table colgroup.gutter{
display: table-cell!important;
}
解决后发现表格最右侧的边框重叠了
解决方法
// 解决element表格后面边框重叠的问题
.el-table--group::after, .el-table--border::after {
width: 0;
}
网友评论