element ui 设置table背景透明
设置背景透明时,要注意如下几点
1、重写样式要加(/deep/),一定要写,不然不会生效
2、th、td、tr都要有背景颜色,不然不会生效
/deep/.el-table, .el-table tr, .el-table td, .el-table th {
background-color: transparent!important;
}
设置背景透明时,要注意如下几点
1、重写样式要加(/deep/),一定要写,不然不会生效
2、th、td、tr都要有背景颜色,不然不会生效
/deep/.el-table, .el-table tr, .el-table td, .el-table th {
background-color: transparent!important;
}