朕已阅
通常我们在做小程序时,一行文字直接溢出,那么怎么能够让他换行呢?
<view class="container"> <text>哈哈哈这是一段文字</text> </view>
我们只需要给添加样式即可:
//css .container text{white-space:pre-wrap}
评论: 微信小程序里面文字怎么换行?