I'm using a select element in Angular 5 with bootstrap 3. I think it's a WebForms / Bootstrap component. Is it possible to attach images to the different options? Perhaps using CSS?
<select (change)="course.active = !course.active"
name="myselect">
<option [selected]="course.active" >
Option 1
</option>
<option [selected]="!course.active" >
Option 2
</option>
</select>