搜索
您的当前位置:首页正文

小程序-文字换行与省略号方式

来源:二三娱乐
          <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;
}

``
Top