Vue el-table背景透明

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Vue el-table背景透明

有名呀   2022-09-28 我要评论

【前言】

一般我们在使用ElementUI组件库的时候,在使用el-table时,背景通常是白色的,但有时候不能满足我们的实际需求,我想让el-table背景变为透明色,下面就来说一下如何实现。

【内容】

说明:因为我们通常都是使用ElementUI库的组件,这个组件库是有自己的一套样式的,所以要想实现自己想要的效果,难免要重写样式来实现。

重写样式需要加(>>> 或者 /deep/),不加的话是不会生效的。

1、在el-table外加div并自定义class

<div class="table" style="margin-top:20px;">
    <el-table :data="tableData"  :header-cell-style="getRowClass"  >
        <el-table-column  label="a" type="index"></el-table-column>
        <el-table-column label="b" prop="data"></el-table-column>
    </el-table>
</div>

2、重写css样式

.table /deep/ .el-table th {
    background-color: transparent!important;
}
 
.table /deep/ .el-table tr {
    background-color: transparent!important;
}
.table /deep/  .el-table--enable-row-transition .el-table__body td, .el-table .cell{
   background-color: transparent;
}
.el-table::before {//去除底部白线
     left: 0;
     bottom: 0;
     width: 100%;
     height: 0px;
}

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们