element-plus el-table 在页面放大时会出现表头和内容错位的情况
现象解决方法如下:
// 关键css代码
.el-table__header col[name="gutter"] {
display: table-cell !important;
}
测试链接
链接: link.
https://codepen.io/yeyue1992/pen/PoWZamo
解决方法如下:
// 关键css代码
.el-table__header col[name="gutter"] {
display: table-cell !important;
}
测试链接
链接: link.
https://codepen.io/yeyue1992/pen/PoWZamo