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{
               100% !important;
          }
 
 

  

 
1、路在何方? 路在脚下 2、何去何从? 每个人都在探索,未来的方向在何处。如果说某些方向是世人已经公认的,那么就先按照公认的去走吧(ps:站在巨人的肩膀上看世界会清晰)。 如果说方向,当今世人还不清晰准确。那么就大胆往前走吧,对与错并不重要。心中的方向更加重要。
原文地址:https://www.cnblogs.com/yuanjili666/p/12103899.html