01、css超过一定长度显示省略号

  
 overflow: hidden;
    white-space: nowrap;
     text-overflow: ellipsis;

  

 

02、antd design   中table,表格省略号处理的问题

    //table
    table{
        table-layout:fixed; 
    }
    .ant-table-row-cell-ellipsis, .ant-table-row-cell-ellipsis .ant-table-column-title {
        white-space: nowrap;    
        overflow: hidden;       
        text-overflow: ellipsis;
    }
    .ant-table-body td,th{
        white-space: nowrap;    
        overflow: hidden;       
        text-overflow: ellipsis;
      }




   .ant-table-scroll table{
              width: 100% !important;
          }
 
 

  

 

 

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
猜你喜欢
  • 2021-12-30
  • 2022-01-04
  • 2021-09-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案