微信小程序---小技巧 换行省略符

单行省略:

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

多行省略:

text-overflow:ellipsis;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;

原文地址:https://www.cnblogs.com/xzma/p/7472555.html