elementUI中el-table的表格头的分割线

603 阅读1分钟

可以在全局进行设置,在后续页面中无需重复定义,例如定义在index.html中。

nth-last-child标记2的原因是表格最后有一个类名为gutter的th标签

.el-table__header tr th>.cell {
  border-right: 1px solid #DCDDE0; 
}
.el-table__header tr th:nth-last-child(2) .cell{   //最后一个标题后没有隔离线
  border-right: 0 !important;
}

image.png

image.png