风华正茂、时光流逝、真爱时光、努力创建辉煌。

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

  

 

 

 

 

 
posted @ 2019-12-26 19:13  野马,程序源改造新Bug  阅读(1510)  评论(0编辑  收藏  举报