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

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

posted @ 2020-02-21 14:44  kpengfang  阅读(3275)  评论(0)    收藏  举报