Luc*_*bon 1 html text word-wrap ionic2
这是我的HTML代码,但文本包装在某种程度上不适用于此选择组件.有人有想法吗?
<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>Run Code Online (Sandbox Code Playgroud)
在.sass中覆盖此类
.alert-radio-label {
white-space: normal!important;
}
Run Code Online (Sandbox Code Playgroud)