如何在离子卡上创建页脚

  • 本文关键字:创建 ionic2 ionic3
  • 更新时间 :
  • 英文 :


如何在离子卡上craete页脚。在下面尝试了这些示例,但不起作用。请帮助

.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>

您需要在离子卡中使用离子col和离子行。

<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>

使用并完成其他答案:https://stackoverflow.com/a/47975359/4280561

这里是所有代码:

html:

  <ion-card class="has-card-footer">
      <ion-card-header>
          CNC 10
      </ion-card-header> 
      <ion-row class="card-footer">
          <ion-col>
              <p>Footer goes here </p>
          </ion-col>
      </ion-row>
  </ion-card>

和CSS:

.card-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.has-card-footer {
  padding-bottom: 15px;
}

相关内容

  • 没有找到相关文章

最新更新