Upper and lower dislocation of antd table table


as shown in the picture, the table is misplaced up and down. It would be better to pull it up and down from the console. How to deal with this

?
Apr.06,2021

have you solved this problem? If fixed is cancelled, it will not have a fixed effect, and this problem will only occur with the addition of fixed.


.ant-table-tbody > tr > td {

word-wrap: break-word;
word-break: break-all;

}


  .ant-table-fixed-header .ant-table-body-inner {
    overflow: hidden; // 
  }

version 3 of antd should be set this way


this table is not written in table, is it


.ant-table-fixed {
    tr {
        height: auto !important;
    }
}
Menu