美文网首页
element ui 表格样式的修改

element ui 表格样式的修改

作者: Sallyzqc | 来源:发表于2019-06-12 10:30 被阅读0次

    1. 修改表格高亮行的颜色

    .el-table--enable-row-hover .el-table__body tr:hover>td{

    background-color:#fff7e5 !important;

    }

    2. 设置展开行的展开部分的背景色

    .el-table .el-table__expanded-cell {

    background-color:rgba(235, 245, 255, 0.6);

    }

    3. 设置展开行的展开部分的高亮背景色

    .el-table--enable-row-hover .el-table__body tr.expanded+tr:hover>td{

    background-color:rgba(235, 245, 255, 0.6)!important;

    }

    4.去掉表格里的横线

     .el-table td {

    border-bottom:none !important;

    }

    .el-table th.is-leaf {

    border-bottom:none !important;

    }

     .el-table__row>td{

    border:none;

    }

     .el-table::before {

    height:0;

    }

    相关文章

      网友评论

          本文标题:element ui 表格样式的修改

          本文链接:https://www.haomeiwen.com/subject/mmdkfctx.html