Hi, I am working on a menu in which I have displayed items. The problem I am facing is that when the name of my item is too long it wraps to the next line and this creates unevenness for the other items whose names does not wrap to a new line. How do I modify my code such that I can add a second line for all items and so if any item name were to wrap, the name can occupy the second line without disrupting the alignment.
A sample of my code for my item name is as follows
<ion-row>
<ion-col col-lg-12 col-12>
<div>
<h2 style="font-size: 10px;" text-center>
<strong> {{product.name}}</strong>
</h2>
</div>
</ion-col>
</ion-row>
Your help is much appreciated!
Thanks!