微信小程序超出隐藏省略号和自动换行
超出隐藏省略号
width: 70%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
自动换行
width: 70%;
display: block;
text-overflow: ellipsis;
word-wrap: break-word;
超出隐藏省略号
width: 70%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
自动换行
width: 70%;
display: block;
text-overflow: ellipsis;
word-wrap: break-word;