css省略号

一行

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

  

多行

display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

  

原文地址:https://www.cnblogs.com/wangxirui/p/14912986.html