css 常用樣式antd design 中table,表格省略號處理的問題


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;
          }
 
 

  

 

 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM