antd table表格设置scroll纵向滚动错位bug优化

📅 2026/7/11 4:53:33
antd table表格设置scroll纵向滚动错位bug优化
问题描述以及效果展示问题分析只要加上 :scroll{ y: 240 } 纵向滚动就会出现以上图片问题官网好像也是。版本是vue2 antd版本1.7.8 2.2.8 都有此问题浏览器兼容问题我用的是Google 换其他的浏览器左右拖动会闪动短暂错位停下又好了a-table :columnscolumns :data-sourcedata bordered sizemiddle :scroll{ y: 240 } /问题解决修改表格样式::v-deep .ant-table-thead tr th:last-child { border-right:1px solid #e8e8e8 !important; } ::v-deep.ant-table-fixed-header .ant-table-scroll .ant-table-header{ margin-bottom: Opx!important; overflow: hidden !important; padding-right: 8px !important; }最后效果