element-ui 表格固定头和固定列表格错位
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
问题:当 el-table 组件固定了表头和列时,列表数据触发滚动条,列表滚动到底,会有错位。
原因分析:因为固定列和固定表头产生的滚动条宽度不一致,导致有轻微误差。
解决:自定义滚动条高度,将滚动条高度设置小一点且一致。
/deep/::-webkit-scrollbar {
width: 10px !important;
height: 10px !important;
background-color: #8487879e;
}
/deep/.el-table__fixed::before,
.el-table__fixed-right::before {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 1px;
background-color: unset;
z-index: 4;
}
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献7条内容
所有评论(0)