table表格 固定列靠右竖线分割线消失

72 阅读1分钟

解决方案

<style lang="scss">
//表头
thead th:not(.is-hidden):last-child {
  right: -1px !important;
}
//表单
.el-table__row {
  td:not(.is-hidden):last-child {
    right: -1px !important;
  }
}
</style>