Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

text-transform css not support in tablet browser

Tags:

html

jquery

css

I am using text-transform:uppercase in input box. it is not support in tablet browser.

Here is my HTML:

<html>
<body>
<input type="text" class="isCapital">
</body>
</html>

And CSS:

.isCapital{text-transform:uppercase;}

anybody have solution for this. please update your answers.

like image 963
Mathi Avatar asked Aug 05 '26 14:08

Mathi


1 Answers

You have:

                          <!-- v--- this was misspelled -->
<input type="text" class="isCaptial">

It should be:

<input type="text" class="isCapital" />
like image 91
Yes Barry Avatar answered Aug 09 '26 00:08

Yes Barry