首页 > 其他分享 >element table去除下边框和右边框的白线

element table去除下边框和右边框的白线

时间:2023-03-21 14:13:21浏览次数:30  
标签:el none 白线 边框 background 去除 table element

改变 el-table风格的时候 右侧和下方会有一条白线,解决办法:

//去除右侧白线  
.el-table--border::after {
    width: 0px;
  }

  .el-table__header-wrapper {
    background: none;
  }
//去除下方白线
.el-table::before{
    background:none  
}

 

标签:el,none,白线,边框,background,去除,table,element
From: https://www.cnblogs.com/houBlogs/p/17239818.html

相关文章