IONIC在离子项中有关于自动换行的两个问题: 1.字符串会被末尾附加的点截断,如何显示没有点的完整内容? 2.自动换行和响应在Firefox中不起作用(Chrome还可以),如何在Firefox中解决这个问题?
<div class="row responsive-sm">
<div class="col">
<div class="item item-body">
<ion-item class="wrap" style="word-wrap: break-word; word-break: break-all;">
#fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion #fashion
</ion-item>
</div>
</div>
非常感谢任何帮助。最好的祝福。 这是完整的HTML来显示问题 codepen
答案 0 :(得分:101)
对于离子1:
将item-text-wrap
类添加到项目。
<ion-item class="item-text-wrap">
some long string
</ion-item>
对于离子2:
将text-wrap
属性添加到项目。
<ion-item text-wrap>
some long string
</ion-item>
答案 1 :(得分:97)
在Ionic 2中,使用text-wrap
属性
<ion-item text-wrap>
text here wraps to multiple lines
</ion-item>
答案 2 :(得分:13)
答案 3 :(得分:1)
对于Ionic 4,在text-wrap
元素上使用ion-label
,如下所示:
<ion-item>
<ion-label text-wrap>
Multiline text that should wrap when it is too long
to fit on one line in the item.
</ion-label>
</ion-item>
答案 4 :(得分:1)
答案 5 :(得分:0)