I am trying to make the first character in uppercase input.
So far I have tried:
input:first-letter {text-transform:capitalize !important}
input:first-letter {text-transform:uppercase !important}
I also tried to create an input field display:block;and display:inline-block;, but no luck.
I am using the latest version of chrome. If I look in the inspector
input:first-letter {text-transform:capitalize !important} is flagged to be active but it does not work.
I am open to any jQuery solutions as well
Thank,
source
share