2.11.1
所有
2.6.10
https://codepen.io/anon/pen/xvPXpL
在固定列的位置鼠标无法拖动滚动条
可以拖动滚动条
无法拖动滚动条
Translation of this issue:
2.11.1
All
2.6.10
Https://codepen.io/anon/pen/xvPXpL
Mouse cannot drag scrollbar at fixed column position
You can drag the scroll bar
Cannot drag scrollbar
兄弟 看这里 https://github.com/ElemeFE/element/pull/16915
你可以先在自己工程里 加上
.el-table--scrollable-x .el-table__body-wrapper {
z-index : 1;
}
已知问题。
看了评论 感觉应该使用下面代码, 如果使用 xrkffgg 这个用户的代码 会使得 右fix column 的左边框消失
.el-table--scrollable-x .el-table__body-wrapper .el-table__body {
z-index : 1;
}
those way have not help, for me . has other any more way? >_<
.el-table--scrollable-x .el-table__body-wrapper {
z-index : 1;
}
.el-table--scrollable-x .el-table__body-wrapper .el-table__body { z-index : 1; }
Most helpful comment
兄弟 看这里 https://github.com/ElemeFE/element/pull/16915
你可以先在自己工程里 加上