设置第几行出现省略号
         display: -webkit-box;
          overflow: hidden;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;    
设置单行出现省略号
overflow: hidden; 
text-overflow:ellipsis;
white-space: nowrap;
原文:https://www.cnblogs.com/HeighWord/p/11444519.html