表格的横线取消问题
样式加载可能也有问题,不行可以加!
.el-table::before {//去掉最下面的那一条线
height: 0px;
}
.el-table th.is-leaf, .el-table td{ //去掉头部的线
border-bottom: none;
}
.el-table__row>td{
border-bottom: 1px solid black;
}
.has-gutter > tr > th {
border-bottom: 1px solid black;
}
网友评论