小程序-文字换行与省略号方式
2019-01-17 本文已影响2人
crossroads
<text class='text'></text>
...方式
.text{
......
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
-webkit-hyphens: auto;
hyphens: auto;
white-space: pre-wrap;
}
换行方式
.text{
white-space:pre-wrap;
}
``