我正在使用AngularJS和Ionic構建混合移動應用程序。垂直中心登錄表單?
這是我的登錄表單:
<ion-content class="padding">
<form class="list">
<label class="item item-input">
<input type="text" class="text-align-center" placeholder="{{ 'EMAIL' | translate }}" ng-model="credentials.email" autocapitalize="off" autocorrect="off" spellcheck="false">
</label>
<label class="item item-input">
<input type="password" class="text-align-center" placeholder="{{ 'PASSWORD' | translate }}" ng-model="credentials.password" autocapitalize="off" autocorrect="off">
</label>
<button class="button button-block button-stable" type="submit" ng-click="login()">{{ 'LOGIN' | translate }}</button>
</form>
</ion-content>
是什麼讓這個登錄表單垂直排列的好辦法?
參見[如何垂直居中的一個div所有瀏覽器?](http://stackoverflow.com/questions/396145/how-to-vertically-center-a-div-for-a ll-browsers) –
@ iWork:這是行不通的。它不會改變我的表格的出現。表格仍然在頁面頂部 – user1283776
你能提供一個小提琴嗎? –