如何在 ionic 卡上创建页脚。尝试了以下示例,但无法正常工作。请帮助
.html

<ion-card class="dashboardgraph">
    <ion-card-header class="cardheader">
      CNC 10
     </ion-card-header>
    <ion-footer class="cardfooter">
      footer here ///
     </ion-footer>
</ion-card>

最佳答案

您需要在 ionic 卡中使用ion-col和ion-row。

<ion-content fullscreen>
  <ion-card>
   <ion-card-header class="cardheader">
      CNC 10
    </ion-card-header>

    <ion-card-content>
     Content of the card
    </ion-card-content>

    <ion-row class="cardfooter">
      <ion-col>
            <p>Footer goes here </p>
      </ion-col>
    </ion-row>
  </ion-card>
</ion-content>

关于ionic2 - 如何在 ionic 卡上创建页脚,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47975114/

10-12 14:39