小程序文字超出两行后显示省略号

display: -webkit-box;

overflow: hidden;

text-overflow: ellipsis;

word-wrap: break-word;

white-space: normal !important;

-webkit-line-clamp: 2;

-webkit-box-orient: vertical;

两行文本省略

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

一行文本省略

参考源链接:https://blog.csdn.net/hhy2014yatan/article/details/82629960

原文地址:https://www.cnblogs.com/kpengfang/p/12341335.html