element el-table 滚动边框去除

荀辰钊
2023-12-01
el-table__header , .el-table__body,
.el-table__footer {
    width: 100% !important;
  },
 .el-table__header colgroup col[name='gutter'] {
    width: 0px !important;
  }

亲测有用 当列表数据多滚动时 出现滚动条,滚动条可以去掉但是 留下的滚动条的宽去除不掉,可以考虑使用这个  搞了好久 好多次都没弄,

下面这一段更改滚动条样式 ,搜刮过来的 ,有的不顶用有的可以

.fiberOpticCable .el-table--border th.gutter:last-of-type {
    display: none;
    border-color: transparent !important;
    background-color: transparent !important;
    width: 0px !important;
    height: 0px !important;
  }
  .fiberOpticCable .gutter {
    width: 0px !important;
    background-color: transparent !important;
    display: table-cell !important ;
  }
  .fiberOpticCable .el-table th .gutter {
    display: table-cell !important;
  }
  .fiberOpticCable .el-table__body-wrapper::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    display: none !important;
  }
  //滚动条的滑块
  .fiberOpticCable .el-table__body-wrapper::-webkit-scrollbar-thumb {
    background-color: transparent !important;
    // border-radius: 15px;
  }
  .fiberOpticCable .anchorBL {
    display: none !important;
  }

出来 记录一下备用

 类似资料: