el-table固定列后边框消失问题

el-table固定列后边框消失问题

  • 固定最后一列
::v-deep .el-table__row {
    td:not(.is-hidden):last-child {
        right: -1px;
    }
}

::v-deep .el-table__header {
    th:not(.is-hidden):last-child {
        border-left: 1px solid #EBEEF5; // 颜色根据你表格的颜色自定义,当前颜色是element默认的颜色
    }
}
  • 固定最后2列

    :nth-last-child(n)选择某个元素的一个或多个特定的子元素,从这个元素的最后一个子元素开始算;

::v-deep .el-table__row {
    td:not(.is-hidden):nth-last-child(2) {
        right: -1px;
    }
}

::v-deep .el-table__header {
    th:not(.is-hidden):nth-last-child(2) {
        border-left: 1px solid #EBEEF5; // 颜色根据你表格的颜色自定义,当前颜色是element默认的颜色
    }
}
posted @ 2023-02-01 15:44  张二木  阅读(1196)  评论(0)    收藏  举报