el-table去掉底部横线
时间: 2023-07-07 07:38:34 浏览: 290
如果您想要在 Element UI 的 el-table 中去掉底部边框线,可以使用以下 CSS 样式来实现:
```
.el-table__body-wrapper.is-scrolling-none .el-table__body {
border-bottom: none !important;
}
```
将上述样式添加到您的样式表中即可。需要注意的是,这样会将所有 el-table 中的底部边框线都去掉,如果您只想去掉某个 el-table 的底部边框线,可以在该 el-table 的外层容器上添加一个特定的类名,然后将上述样式修改为:
```
.your-custom-class .el-table__body-wrapper.is-scrolling-none .el-table__body {
border-bottom: none !important;
}
```
这样仅会影响拥有 `.your-custom-class` 类名的 el-table。
阅读全文