vue-element-admin table表格中浏览器按百分比缩放,表头与内容边框错位

o8x7eapl  于 2022-10-20  发布在  其他
关注(0)|答案(3)|浏览(270)

Bug report(问题描述)

好像是elementUI没解决的问题,表头与内容错位

Steps to reproduce(问题复现步骤)
Screenshot or Gif(截图或动态图)

Other relevant information(格外信息)
  • Your OS:
  • Node.js version:
  • vue-element-admin version:
8gsdolmq

8gsdolmq1#

我也是,求解决方案

dnph8jn4

dnph8jn42#

这个更建议去element-ui 官方提bug。

zfycwa2u

zfycwa2u3#

别人已经给了回复了,很hack的方法

解决方法:

需要在styles/index.scss下 最后加上
// main-container global css
.app-container {
padding: 20px;
}
body .el-table th.gutter{
display: table-cell!important;
}

body .el-table colgroup.gutter{
display: table-cell!important;
}

相关问题