当前位置:   article > 正文

element UI tabel表格改变边框颜色_修改el-table border颜色

修改el-table border颜色

element UI tabel表格改变边框颜色

1.改变最外层边框
 .el-table td, .el-table th.is-leaf,.el-table--border, .el-table--group{
        border-color: black;
    }
 .el-table--border::after, .el-table--group::after, .el-table::before{
        background-color: black;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
2.添加属性:cell-style=“cellStyle” 改变表格里面的边框颜色。
:header-cell-style="{color:‘black’,borderColor:‘black’}",改变表头的边框颜色,
 <el-table :cell-style="cellStyle" :header-cell-style="{ color: 'black', borderColor: 'black' }"  height="200" :data="tableData" style="width: 100%" border >
     <el-table-column prop="date" label="序号" width="180" align="center">
     </el-table-column>
     <el-table-column prop="name" label="参数名称" width="180" align="center">
     </el-table-column>
</el-table>
 methods: {
    cellStyle({ row, column, rowIndex, columnIndex }) {
      return "height:35px!important; border-color:black!important; color:#000000!important; padding:0px!important; height:40px!important";
    },
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/113837
推荐阅读
相关标签
  

闽ICP备14008679号