elementUI 自定义表格样式
程序员文章站
2022-06-07 18:35:12
...
- 去掉背景色
.el-table, .el-table tr, .el-table th{
background-color: transparent;
}
- 去掉底部边框
.el-table:before{
height: 0;
}
- 去掉鼠标悬停高亮效果
.el-table .el-table__body tbody tr>td{
background-color: transparent;
}