0
我想垂直對齊離子視圖內的div。我指的是this codepen。該codepen中的示例適用於無標題的離子視圖。但是,如果我如下所示包含標題,則不能正確垂直對齊。在離子視圖內容中的垂直對齊div
我能做些什麼來使它在這種情況下垂直對齊?
<body ng-controller="AppCtrl as ctrl">
<ion-header-bar align-title="left" class="bar-positive">
<div class="buttons">
<button class="button" ng-click="doSomething()">Left Button</button>
</div>
<h1 class="title">Title!</h1>
<div class="buttons">
<button class="button">Right Button</button>
</div>
</ion-header-bar>
<ion-content has-header="true" padding="true">
<div class="row row-center">
<div class="col col-center">
You need to login
</div>
</div>
<div class="row">
<div class="col">
<button class="button button-block button-positive">
Go to Login
</button>
</div>
</div>
</ion-content>
</body>
即使添加標題後,我也看不到任何區別。你能否詳細說明你的問題? – Atula