当前位置:   article > 正文

element ui修改el-table表格单元格边框颜色_elementui表格边框颜色

elementui表格边框颜色

element-ui官网

第一步:设置除表头单元格边框样式 :cell-style=“{borderColor:‘#01e3ed’}”
第二步:设置表头单元格边框样式 :header-cell-style=“{borderColor:#01e3ed}”

    <el-table v-loading="loading" :data="userList" :cell-style="{borderColor:'#01e3ed'}" :header-cell-style="{borderColor:'#01e3ed'}">
      tooltip="true" />
     
    </el-table>
  • 1
  • 2
  • 3
  • 4


第三步:单独给表格加样式 加个类名class=“exporttable”

<el-table v-loading="loading" class="exporttable" :data="userList" :cell-style="{borderColor:'#01e3ed'}" :header-cell-style="{borderColor:'#01e3ed'}">
      <el-table-column type="selection" width="50" align="center" />
      <el-table-column label="用户编号" align="center" prop="userId" />
      <el-table-column label="用户名称" align="center" prop="userName" :show-overflow-tooltip="true" />
     
   </el-table>
    
 
.exporttable {
    border: solid 1px #c0c0c0;
 }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12


第四步:功能实现 -点赞 + 收藏!你是最美的!

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

闽ICP备14008679号