0

Capitalize first letter of a string using Angular for input boxes

input boxes first letter should automatically turn when enter a letter

  • Does this answer your question? [Make the first character Uppercase in CSS](https://stackoverflow.com/questions/5577364/make-the-first-character-uppercase-in-css) – Mue May 09 '23 at 19:11

1 Answers1

1

You could go with text-transform:

input {text-transform: capitalize;}
<input type="text" />
Mue
  • 434
  • 5
  • 12