【发布时间】:2017-01-01 10:00:06
【问题描述】:
如果我使用带有浮动标签的输入标签,它就像下图的电话标签一样。我使用带有浮动标签的选择标签,它就像国家标签一样。
我希望国家/地区也像电话标签一样。我怎样才能获得与电话标签一样的外观和感觉。
<ion-item width-50 >
<ion-label floating>Phone</ion-label>
<ion-input type="tel"></ion-input>
</ion-item>
<ion-item width-50>
<ion-label floating>Country</ion-label>
<ion-select [(ngModel)]="country">
<ion-option>{{country}}</ion-option>
</ion-select>
</ion-item>
【问题讨论】:
-
如果有人知道请给我建议
标签: angular typescript ionic2