Reputation: 1103
<select id="selectIdentity" name="selectIdentity" required ng-trim="true" ng-change="changedValue(addUser.identityProvider)" ng-model="addUser.identityProvider" >
<option value="" selected hidden />
<option ng-repeat="idprovider in identityProvider" value="{{idprovider .UOM}}">
{{idprovider}}
</option>
</select>
for all the browsers white space is not appearing in first option of the dropdown but in IE11 shows White space. how to remove that white space in IE.
here i have created a fiddle link http://jsfiddle.net/vinothsm92/gkJve/1502/
kindly check it in IE browser
Can any one tell me how to fix this
Upvotes: 0
Views: 77
Reputation: 32354
The problem sees to be with the hidden attribute of your empty option
Upvotes: 2