Currently, I am utilizing Angular 2 with bootstrap 4 and have implemented the following select element:
<div class="form-group">
<label class="col-md-4 control-label" for="OptionExample">Choose an option:</label>
<div class="col-md-4">
<select id="optionExample" name="optionExample" class="form-control" [(ngModel)]="ngmodeloptionExample"
(ngModelChange)="optionExamples()">
<option disabled [ngValue]="-1">Select an Option</option>
<option *ngFor="let option of options" [ngValue]="option">{{option.property }}</option>
</select>
</div>
</div>
I am interested in styling this select element. I've tried incorporating some bootstrap classes without success. I am open to using Typescript or javascript, however, I am facing challenges when attempting to integrate a library like: