I’m trying to set a movie poster inside a card and a ion-label with the name, but if the name of the movie is too long, the card expands in ipad+ resolution, how can i wrap the text to fully display it or overflow it?
here is the code i’m using
<ion-row> <ion-col size="12" > <ion-card > <img class="poster" [src]="movie.poster_path | img"> <ion-label text-wrap>{{movie.title}}</ion-label> </ion-card> </ion-col> </ion-row>