I want to display all other options of a dropdown in small case, except The selected one. Selected one should be displayed in uppercase.
select{
text-transform: uppercase;
}
option{
text-transform: lowercase !important;
}
I think, we cannot style option elements. Is there any other alternatives other than a custom drop-down?
It's working fine in ipad since ipad's default behaviour is same as my expectation. But it's not fine in android.
You can see the dropdown in this fiddle.