修改element UI中Table的背景(大屏项目)。背景透明 电脑版发表于:2023/3/20 11:51 最近在做大屏项目,需要修改Table背景为透明色,查阅了一些,最终成功,故记录一下,希望大家可以用到 ### 代码: ``` /* 表格内背景颜色 */ ::v-deep .el-table th, ::v-deep .el-table tr, ::v-deep .el-table td { background-color: transparent; } ::v-deep .el-table td.el-table__cell, ::v-deep .el-table th.el-table__cell.is-leaf { border-bottom: 0; } ::v-deep.el-table--enable-row-transition .el-table__body td.el-table__cell { background-color: transparent !important; } ::v-deep.el-table td.el-table__cell div.cell { background-color: transparent !important; } ::v-deep .el-table { background-color: transparent !important; } ::v-deep .el-table__row { background-color: transparent ; } /* 去除底部白线 */ .el-table::before{ background-color: transparent; } ``` 注意这里很多地方使用到了!important,可能会造成设置的样式无效,所以需要根据实际情况调整是否使用!important。 原文: https://blog.csdn.net/Xxxxxx_q/article/details/127783102