搜索

首页  >  问答  >  正文

Ionic 如何在 2 个 div 之间留出空间

我需要在图像顶部和底部留出空间,这样它就会居中,而 ion-col 会向下。

<ion-content [fullscreen]="true" class="bg-class" text-center>

  <ion-img src="assets/icon/moon_logo.png" style="width:80%; margin: auto;">
  </ion-img>

  <ion-col>
    <div style=" margin: auto; padding-bottom: 15px;">
      <ion-button expand="block" style="--background:white; color: #1B0B50;">Login</ion-button>
    </div>
    <div style="margin: auto;">
      <ion-button expand="block">Get Started</ion-button>
    </div>
    <ion-row style="justify-content: center;">
      <p style="color: #576898; font-size: 12px;">Privacy Policy</p>

      <p style="color: #576898; font-size: 12px; padding-left: 20px;">Terms Of Use</p>
    </ion-row>
  </ion-col>

</ion-content>

预期显示结果

P粉203792468P粉203792468285 天前337

全部回复(1)我来回复

  • P粉883278265

    P粉8832782652024-02-18 11:58:41

    首先,在 ion-row 中使用 ion-col ,在 ion-grid 中使用 ion-row ,否则你会看到意想不到的结果。现在有很多解决方案,一种是使用flex和flex-grow:

    
      
    ...

    回复
    0
  • 取消回复