小程序自动换行

自动换行:

<text class='row-text'>{{item.comment}}</text>
 
css:
.row-text{
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp:3;
-webkit-box-orient: vertical;
margin:12px;
word-break:break-all;/**--自动换行--**/
}
 
 
 
 
 
 

猜你喜欢

转载自www.cnblogs.com/kongxc/p/9239085.html