ion-select不显示全文

时间:2018-05-06 08:16:49

标签: ionic3 ion-select

以我的形式选择离子 - 不显示其离子选项的全文

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

尝试一下:

CSS

.myCustomSelect{
    max-width: 100% !important;
   }

HTML

<ion-select class= "myCustomSelect" [(ngModel)]="pedido">
      ....
 </ion-select>

来源:https://github.com/ionic-team/ionic/issues/5427

答案 1 :(得分:0)

我也遇到了同样的问题,我将其放在app.scss文件中来解决了这个问题:

ion-label{

white-space:normal !important;

}