css超出内容省略号代替。

 1.单行显示,超出的部分用省略号显示


  overflow: hidden;
  text-overflow: ellipsis;

  white-space: nowrap;


2.只展示几行,超出的部分用省略号显示


  overflow: hidden;

  /*p溢出的位置也需要省略号*/
  display: -webkit-box;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 2;
原文地址:https://www.cnblogs.com/wplcc/p/6639414.html