Reputation: 737
<ion-select-option *ngFor="let make of makes" [value]="make?.code">
{{make?.name}}<span class="change-stuff">example</span>
</ion-select-option>
I want to be able to have a span or div with some css inside the ion-select-option is this possible? For example the text example I might want to have a green background or some other custom style
Upvotes: 2
Views: 321