Hi everyone, i want to know, how can i put some div with drag-content=“false”…
Because i want to create a login page/view, but when i push down, the div move, and i don’t want this…
I already try to put: drag-content=“false” in , , in div, in all, but don’t work… So, someone know, how can i fix it?
<ion-tabs class="tabs-striped tabs-top tabs-background-assertive tabs-color-light">
<ion-tab title='OPTION1'>
<ion-view>
<ion-content>
<label class="item item-input item-floating-label">
<span class="input-label">LABEL</span>
<input type="tel" placeholder="LABEL">
</label>
</ion-content>
</ion-view>
</ion-tab>
<ion-tab title='OPTION2'>
<ion-view>
<ion-content>
<h1>OPTION2</h1>
</ion-content>
</ion-view>
</ion-tab>
That is my code, the label, insde the tabs content are moving…
Thanks!