当前位置:   article > 正文

antdesign table自适应列宽(亲测可用,通过css的方式实现)_ant design table 列宽

ant design table 列宽

a-table表格列宽自适应

// table组件
::v-deep .ant-table {
  width: 100% !important;
  .ant-table-body{
    overflow: auto !important;
    th,tr,td {
      white-space: nowrap;
       text-overflow: ellipsis;
       word-break: break-word;
       overflow: hidden;
    }
  }
  .ant-table-tbody{
    th,tr,td {
      white-space: nowrap;
       text-overflow: ellipsis;
       word-break: break-word;
       overflow: hidden;
    }
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/117870
推荐阅读
相关标签
  

闽ICP备14008679号