css多行溢出省略号

  line-height: 20px;
  max-height: 40px;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
 
 
//注意行高和高度设置
然后注意  -webkit-box-orient: vertical; 
  /*! autoprefixer: off */ 这个不能少 
 
原文地址:https://www.cnblogs.com/qingcui277/p/14713449.html