I just want the option
text to be uppercase.
Using an Chrome or Safari on a mobile device, go to: http://jsfiddle.net/justincook/SAm7Q/
I've tried the following with no success:
<style>
select, select option {
text-transform: uppercase;
-webkit-appearance:none;
}
</style>
<select>
<option>- select -</option>
<option>make me caps</option>
</select>
It seems iOS does not allow any styles for select option
, any way around that? Does Android behave this way too?