1
私はどのようにIonic2によって提供されるデフォルトのアライメントクラスを適用しますか?たとえば、カードの右側にボタンを表示したいとします。Ionic2のアイテムをどのように整列させるのですか?
<ion-card *ngFor="let table of tables">
<ion-card-content>
Card Text
<button ion-button>
<ion-icon name="add"></ion-icon> Add Item
</button>
</ion-card-content>
</ion-card>