I have a select box in my HTML pages developed for mobile browsers (iPhone 4.1+, Android 2.1+ and blackberry 6+). I need to make the text-transform: Uppercase using CSS for that select box.
I have applied the code like this
<select style="text-transform:uppercase">
<option>Text 1</option>
<option>Text 2</option>
<option>Text 3</option>
</select>
But the problem occurs when page loads in mobile browsers the default selected option in the select box does not appear in Uppercase. If we select any option after completion of the page loading, it appears in Uppercase.
Can some one tell me what will be the solution to make the text in uppercase during page loading in mobile browsers?