0
votes

I'm trying to space some elements, e.g. ion-cards, evenly within a content area. This is what I get (and what I want), when I'm trying to do it with the Ionic ion-grid, ion-row and ion-col.

enter image description here

What is the best practise to do so?

Or is this the best way to go?


  display: flex;
  justify-content: space-between;
  align-content: flex-start;

  flex-wrap: wrap;
1

1 Answers

1
votes
display: flex;
justify-content: space-evenly;