1,el-table中自带白色背景 修改为透明。。注意:使用/deep/ ,前面是父元素的class类名
.tableAroundSecurityBox {
margin: auto;
}
.tableAroundSecurityBox /deep/ .el-table–fit {
background-color: transparent !important;
}
.tableAroundSecurityBox /deep/ .el-table,
.el-table__expanded-cell {
background-color: transparent;
}
.tableAroundSecurityBox /deep/ .el-table th {
background-color: transparent !important;
color: #fff;
}
.tableAroundSecurityBox /deep/ .el-table tr {
background-color: transparent !important;
}
.tableAroundSecurityBox /deep/ .el-table–enable-row-transition .el-table__body td,
.el-table .cell {
background-color: transparent;
color: #fff;
border: none;
}
.el-table td, .el-table th.is-leaf {
border-bottom: 0px solid #ebeef5;
}
.el-table::before {
2021-09-09 el-table中修改表格的样式 背景 表头 每行
最新推荐文章于 2023-11-21 09:17:04 发布
本文介绍了如何在Element UI的el-table组件中修改样式,包括将表格背景变为透明,调整表头颜色和字体大小,以及设置行高和单元格样式。通过/deep/穿透式选择器实现样式覆盖,并提供了具体的CSS代码片段。
摘要由CSDN通过智能技术生成