samarthagarwal
7/27/2018 - 1:51 PM

IF_03_26_Grids_Basic

<ion-grid>
  <ion-row>
    <ion-col style="background-color: yellowgreen">This column will take 6 columns</ion-col>
    <ion-col style="background-color: lightcyan">This column will take 6 columns</ion-col>
  </ion-row>
  <ion-row>
    <ion-col size="8" style="background-color: red">This column will take 8 columns</ion-col>
    <ion-col size="4" style="background-color: lightgreen">This column will take 4 columns</ion-col>
  </ion-row>
  <ion-row>
    <ion-col size="3" style="background-color: peru">This column will take 3 columns</ion-col>
    <ion-col size="9" style="background-color: lightcoral">This column will take 9 columns</ion-col>
  </ion-row>
</ion-grid>