Getting puzzled why Bootstrap class text-uppercase
is not working with select options in HTML, whereas apart from select option all classes are working fine.
Here is a working demo for text-uppercase
:
http://plnkr.co/edit/DR8jPACODGzvW8W0ZX2u?p=preview
<select class="form-control">
<option>One</option>
<option><span class="text-uppercase">two</span></option> //class="text-uppercase" not working
<option class="text-uppercase"> three</option> //same here
</select>
Am i doing something wrong ?