col[name="gutter"] el-table设置高度,表头出现错位

<style scoped lang="scss">
// 解决表头固定,出现错位问题
/deep/.el-table {
  th.gutter,
  colgroup.gutter {
    width: 17px !important; //此处的宽度值,对应你自定义滚动条的宽度即可
  }
}
 
// 关键css代码
/deep/.el-table__header colgroup col[name="gutter"] {
  display: table-cell !important;
}
 
</style>
或者使用 dolayout()
posted @ 2022-12-27 14:14  7c89  阅读(260)  评论(0编辑  收藏  举报