Is there a way to style the foreground colors of select list options differently in this dropdown code?
<select id="tier" class="form-control" [(ngModel)]="tierId">
<option *ngFor="let m of tierList" value="{{m.tier}}" >
{{m.optiontext}} | {{m.count}}
</option>
</select>
I would like the optiontext to be displayed in blue and the count in red. Any suggestions on how I can achieve this customization?