here's the picture
here's the style when input is clicked
下面是我的代码:
<ion-item fill="outline">
<ion-icon :src="mail" slot="start"></ion-icon>
<ion-label position="floating">Email Address</ion-label>
<ion-input placeholder="Enter text"></ion-input>
</ion-item>
我用的是ionic framework和vue.js作为javascript框架,请帮忙。
1条答案
按热度按时间70gysomp1#
<ion-label>
上方的额外空间是因为单击时标记内的文本将移动到那里。如果您希望图标和标签的文本在一个级别上,您可以通过重新定位图标本身轻松实现这一点。
这是一个example。