Answers for "how to capitalize only first letter in html"

3

conveert text to uppercase in input field

<input type="text" class="normal" 
       name="Name" size="20" maxlength="20" 
       style="text-transform:uppercase" />
Posted by: Guest on May-19-2020
1

How do you make each word in a text start with a capital letter?

h1 {
  text-transform: capitalize;
}
Posted by: Guest on September-14-2020

Code answers related to "how to capitalize only first letter in html"

Browse Popular Code Answers by Language