Search code examples
htmltextionic2word-wrap

Ionic 2 Text doesnt Wrap in Select Component


Below is my HTML-Code, but somehow the text-wrap doesn´t work in this Select Component. Does anybody have an idea?

<ion-list>
  <h5 color="primary">
    Choose:
  </h5>

  <ion-item text-wrap>
    <ion-select text-wrap class="selectWidth" okText="Ok" cancelText="Cancel" [selectOptions]="selectOptions" [(ngModel)]="Decision">
      <ion-option text-wrap selected="true" color="primary" value="vone" text-wrap>first first first first first</ion-option>
      <ion-option text-wrap color="primary" value="vtwo">second second second second second second second</ion-option>
      <ion-option text-wrap color="primary" value="vthree">third third third third third</ion-option>
    </ion-select>
  </ion-item>
</ion-list>


Solution

  • override this class in your .sass

    .alert-radio-label {
        white-space: normal!important;
    }