I need to transform my uppercase text in capitalize text in the html page.
<ng-container *ngFor="let item of parameterStruct">
<span class="sideBar-text" style="font-size: 12px">
{{item.description}}
</span>
</ng-container>
From item.description I get an uppercase text. Is there a way to use a css property in order to have a capitalize text?