el-table表格去掉横线或修改横线颜色css

需求:修改部分table表格的行横线色

步骤一

  在要修改的el-table上加入class,例如 class="twj-tabble"

步骤二

  在页面的css处或通用css文件内容加入

.twj-table td,
.twj-table th.is-leaf {
  border-bottom: 1px solid #cadcff;
}

  

.spd-pl-table td,
.spd-pl-table th.is-leaf {
  border-bottom1px solid #cadcff;
}
原文地址:https://www.cnblogs.com/tong2018/p/15079613.html