My app alows the user to take notes and saves them. Since the length can be arbitraty, what html tag should I use to make sure the whole text is displayed, preferably with automated linebreaks and not truncated as I have it right now.
<ion-item>
<ion-grid>
<ion-row>
<ion-col width-100><b>Your notes</b></ion-col>
</ion-row>
<ion-row>
<ion-col width-100>{{userNotes}}</ion-col>
</ion-row>
</ion-grid>
</ion-item>