微信小程序超出隐藏省略号和自动换行
时间:2020-04-17 14:49:10
收藏:0
阅读:194
超出隐藏省略号
width: 70%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
自动换行
width: 70%;
display: block;
text-overflow: ellipsis;
word-wrap: break-word;
原文:https://www.cnblogs.com/Byme/p/12719778.html
评论(0)