I am encountering an issue with the presentation of my content. The setup includes:
https://i.sstatic.net/wBKAX.jpg
The CSS code used is as follows:
ion-item.comment-format {
white-space : normal!important;
}
Furthermore, here is a snippet of the HTML structure:
<ion-list>
<ion-item ng-repeat="comment in vm.comments" class="comment-format">
Despite setting the 'white-space' property to 'normal', it seems that the formatting rule is not being applied as expected. Surprisingly, toggling the white space with 'nowrap' results in the desired display effect. This discrepancy has led me to question my understanding of CSS rules and their implementation.