ElementUI Table横向滚动条遇到的问题汇总

如题所述

第1个回答  2022-06-04
1.横向滚动条且左侧列固定时,滚动条的可操作区域被遮挡,必须点击空白处才可实现拖动,更改样式解决:

/deep/#outputTable .el-table__fixed {

.el-table {

.el-table__fixed {

height:auto !important;

      bottom:17px !important;

    }

}

}

/deep/#outputTable .el-table__body-wrapper {

z-index:2;

}

2.设置固定列,样式错乱,解决方案:

设置max-height
相似回答