IONICには、イオンアイテムのワードラップに関する2つの問題があります。 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
For ionic 1:の場合
item-text-wrap
classをアイテムに追加します。
<ion-item class="item-text-wrap">
some long string
</ion-item>
ionic 2:の場合
text-wrap
属性をアイテムに追加します。
<ion-item text-wrap>
some long string
</ion-item>
Ionic 2では、text-wrap
属性を使用します
<ion-item text-wrap>
text here wraps to multiple lines
</ion-item>
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
class = "ion-text-wrap"
<ion-item>
<ion-label class="ion-text-wrap">Long Text</ion-label>
</ion-item>