I'm struggling with the following code snippet:
<select>
<div class="arrow-up"></div>
<option data-ng-repeat="x in y">{{x}}</option>
</select>
the resulting output doesn't show the arrow div like this:
<select class="ng-pristine ng-valid">
<option data-ng-repeat="x in y">x1</option>
<option data-ng-repeat="x in y">x2</option>
</select>
Does anyone know if this is a built-in feature or am I overlooking something? Thanks