Element-UI 下边框,表格错位问题

当前element版本为 2.13.2

1.表格错位问题

 加上如下css代码

.el-table th.gutter {
    display: table-cell !important;
}

.el-table colgroup.gutter {
    display: table-cell !important;
}

2.下边框不显示

 插入如下css代码

.table-container .el-table th.is-leaf, .table-container .el-table td {
    border- 0.5px;
}

原文地址:https://www.cnblogs.com/hill-foryou/p/13674079.html