I want the outcome to be : Tutti i ticket
What I tried:
<ion-segment-button class="ion-segment-button"> <ion-label>Tutti i ticket</ion-label> </ion-segment-button>
.ion-segment-button {
text-transform: lowercase;
}
.ion-segment-button::first-letter {
text-transform: uppercase;
}
If I do :
.ion-segment-button {
text-transform: capitalize;
}
the output is : Tutti I Ticket.
So nothing is working for me,
Thank you very much