Hello, I am trying to vertically allign some text but it seems impossible I do not know why
<ion-content padding>
<ion-grid *ngFor="let dia of tiempo">
<ion-row class="ion-justify-content-around">
<ion-col *ngIf="dia.diaSemana == 'Wed'" >
<div>
Miércoles <img src="../../assets/images/uparrow16.png"/>
{{dia.tempMaxima}}
{{dia.tempMinima}}
</div>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
This is my scss
.ion-justify-content-around {
justify-content: space-around;
}
Basically, im trying to have on the left some text and on the middle and on the left some more text
I hope I explained myselft well
Thank you