当前位置:   article > 正文

element-ui中的table表格修改背景样式透明_element table 背景透明

element table 背景透明

1.element-ui table表格修改背景透明
方法1.html中使用,css中加入如下代码即可

   .el-table,
        .el-table__expanded-cell {
            background-color: transparent !important;
        } */
        /* 表格内背景颜色 */
        /*         
        .el-table th,
        .el-table tr,
        .el-table td {
            background-color: transparent !important;
        } 

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

方法2.less则需要加上/deep/生效,还有注意作用域要是scoped

/*最外层透明*/
/deep/ .el-table, /deep/ .el-table__expanded-cell{
  background-color: transparent;
}
/* 表格内背景颜色 */
/deep/ .el-table th,
/deep/ .el-table tr,
/deep/ .el-table td {
  background-color: transparent;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/113760
推荐阅读
相关标签
  

闽ICP备14008679号