离子2 宽度

问题描述 投票:2回答:2

模板:

<ion-item>
    <ion-label stacked>Select long text</ion-label>
    <ion-select>
        <ion-option value="opt1">Very very long text</ion-option>
    </ion-select>
</ion-item>

由于默认宽度似乎非常窄,因此会被切断。

如何更改宽度?

ionic2
2个回答
2
投票

在你的.sass文件中使用它:

.alert-wrapper {
   min-width: 40px;//what ever you like
}

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

1
投票

sass文件中添加此代码

ion-select{
    max-width: 70% !important;// your choice :)
}
© www.soinside.com 2019 - 2024. All rights reserved.