情况:
我需要将text-wrap
用于离子卡,但它似乎不起作用。
代码:
<ion-card>
<ion-card-header text-wrap>
<h2> <ion-icon name="list-box"></ion-icon> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labor</h2>
</ion-card-header>
<ion-card-content>
<p>content</p>
</ion-card-content>
</ion-card>
THE PLUNKER :
http://plnkr.co/edit/z5ehOQgz0oArhg6mMtUj?p=preview
问题:
有一种方法可以为离子卡使用文本换行吗?
答案 0 :(得分:16)
JsonConvert.DeserializeObject<Model>(json, new JsonSerializerSettings()
{
ObjectCreationHandling = ObjectCreationHandling.Replace
});
您也可以在其他组件中使用文本换行。
答案 1 :(得分:14)
好的,将white-space: normal;
设置为ion-card-header
修复此问题。
<ion-card-header style="white-space: normal;">
也可以放在css文件中。
答案 2 :(得分:0)
white-space: normal;
是正确的。但它应该放在标头标签IE h2
上。默认情况下,“ion-labels”(可以注入DOM的类)应用white-space: nowrap;
。因此,在标题标签上设置white-space: normal;
可以通过css选择离子标签标签。