css文本溢出省略号

  • 单行文本
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
  • 多行文本,webkit-line-clamp为行数
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
原文地址:https://www.cnblogs.com/luguojun/p/14294642.html