当前位置:   article > 正文

el-table样式修改_el-table__cell gutter

el-table__cell gutter

1.表格内容区域

.el-table__body-wrapper {
    background-color: var(--panelBgColor);
}
  • 1
  • 2
  • 3

2.表头右侧滚动条上面的区域
![在这里插入图片描述](https://img-blog.csdnimg.cn/87f5c72bef224229bf16a6baeac51d4c.png

.el-table .el-table__cell.gutter {
    background: var(--tableHeadBg);
}
  • 1
  • 2
  • 3

3.表格行斑马纹样式

  // el-table添加
 :row-class-name="tableRowClassName"
  // methods添加
 tableRowClassName ({ row, rowIndex }) {
      if (rowIndex % 2 == 0) {
        return "even";
      } else {
        return "odd";
      }
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
.el-table__body-wrapper .even {
}
.el-table__body-wrapper .odd {
}
  • 1
  • 2
  • 3
  • 4

4.去掉表头底部边框线(在深色主题下使用,浅色系一般不用)

.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
    border: none !important;
}
  • 1
  • 2
  • 3

5.隐藏表格底部线(在深色主题下使用,浅色系一般不用)

.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf {
    border: none !important;
}
  • 1
  • 2
  • 3

6.表格内容区域的每一行

.el-table td.el-table__cell {
    border-bottom: 1px solid var(--progressBar);
}
  • 1
  • 2
  • 3

7.鼠标移入某行改变颜色

.el-table--enable-row-hover .el-table__body tr:hover > td {
    background-color: var(--detail_active_bg) !important;
}
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/113709
推荐阅读
相关标签
  

闽ICP备14008679号