本帖最后由 诗仙·1957 于 2024-6-26 16:57 编辑
/* 覆盖Element UI表格背景颜色 */
.el-table {
background-color: transparent !important;
color:#FFFFFF !important; /* 设置表格文字颜色为黑色 */
}
/* 覆盖Element UI表头背景颜色 */
.el-table th, .el-table tr {
background-color: transparent !important;
color:#FFFFFF !important; /* 设置表格文字颜色为黑色 */
}
/* 覆盖Element UI表格行背景颜色 */
.el-table .el-table__row {
background-color: transparent !important;
color:#FFFFFF !important; /* 设置表格文字颜色为黑色 */
}
/* 覆盖Element UI表格单元格背景颜色 */
.el-table .cell {
background-color: transparent !important;
color:#FFFFFF !important; /* 设置表格文字颜色为黑色 */
}
/* 如果你还想要表格的边框透明,可以覆盖边框颜色 */
.el-table .el-table__body, .el-table .el-table__header, .el-table .el-table__body td, .el-table .el-table__header th {
border-color: transparent !important;
}
感谢大师的帮助,现在看起来就好很多了
|