Capitalize first letter in text input (Android)

I actually found a pretty good work around on stackoverflow. Use a textarea with a limited height rather than a text input. I guess the OS expects that you’re going to be entering sentences into a textarea while it thinks an input is for something else.

<textarea style="height: 34px"></textarea>

Hope this helps someone else!

1 Like