I'm currently trying to extract the very first letter from the input.
Here is what I tried:
fieldset input { text-transform:capitalize; }
But this does not work the way I want, since every word is capitalized.
I also tried this:
fieldset input:first-letter { text-transform:uppercase; }
But this seems <input /> doesn't work at all with the first letter ...
Anyway, do you have any ideas on how to achieve this without javascript (or as little as possible)?
css
Safirio
source share