当前位置:   article > 正文

Vue+el-table表格边框的颜色改变_vue eltable 边框颜色

vue eltable 边框颜色
// 1.修改每行的背景色为透明色
.el-table th,
.el-table tr {
  // background: transparent !important;
  background: rgba(0, 0, 0, 0.9) !important;
}
// 2.修改移入到每行的背景色
.el-table__body tr:hover > td {
  background: rgba(19, 64, 135, 0.5) !important;
}
// 3.修改表格边框颜色
// 右边和下边
.el-table--border:after,
.el-table--group:after,
.el-table:before {
  background-color: #134087 !important;
}
// 左边和上边
.el-table--border,
.el-table--group {
  border-color: #134087 !important;
}
.el-table td,
.el-table th.is-leaf {
  border-bottom: 1px solid #134087 !important;
}
// 头部的下边框
.el-table--border th,
.el-table--border th.gutter:last-of-type {
  border-bottom: 1px solid #134087 !important;
}
// 列表中间的竖线
.el-table--border td,
.el-table--border th {
  border-right: 1px solid #134087 !important;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/113828
推荐阅读
相关标签
  

闽ICP备14008679号