首页 > 解决方案 > IONIC :: 离子列表中数据与离子复选框的垂直对齐

问题描述

我正在制作一个带有离子复选框的离子列表,但列表单元格内的数据是水平显示的。

<ion-item class="item" *ngFor="let item of collection">
    <ion-label>{{ item.nameMother }}</ion-label>
    <ion-label>{{ item.nameChild }}</ion-label>
    <ion-label>{{ item.birthDate }}</ion-label>
    <ion-label>{{ item.Form }}</ion-label>
    <ion-label>{{ item.countdown }}</ion-label>
  <ion-checkbox></ion-checkbox>
</ion-item>

这是我运行它时的样子:

图片

我该怎么做才能使数据垂直对齐,而不是水平对齐?谢谢。

标签: htmlcsscordovaionic-frameworkionic3

解决方案


推荐阅读