[elementplus] Solve the problem that the fixed column of el-table is not fixed

如图所示,只要只有表头还是固定的,表体不固定了
insert image description here
解决方法:取消给表格固定列设置的position,我这里是因为设置了position:relative导致的

.ep-table-fixed-column--right {
    
    
    position: relative !important;
}

Guess you like

Origin blog.csdn.net/bbt953/article/details/131658771