ページにテキストとボタンを配置しました。私はそれが私が知っている伝統的なCSSの方法を使用して中心currenltyです。これはIONIC 2を中心とする正しい方法ですか?ionic2の要素を中心にする正しい方法
<ion-content padding class="login-signup">
<ion-card>
<div class="or-label">
SOME-TEXT
</div>
<div class="signup-button">
<button outline>Signup</button>
</div>
</ion-content>
//対応するCSS
.or-label {
width: 20%;
font-size: 16px;
margin: 0 auto;
margin-top: 2em;
margin-bottom: 2em;
height: 50px;
text-align: center;
color: red;
}
.signup-button {
text-align:center;
}