css first letter uppercase code example

Example 1: css capitalize first letter

&::first-letter {
  text-transform: capitalize;
}

Example 2: conveert text to uppercase in input field

<input type="text" class="normal" 
       name="Name" size="20" maxlength="20" 
       style="text-transform:uppercase" />

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

h1 {
  text-transform: capitalize;
}

Example 4: css all uppercase to capitalize

.link {
  text-transform: lowercase;
 
}

.link::first-line {
  text-transform: capitalize;
}

Example 5: input uppercase with css

input { 
    text-transform: uppercase;
}

Example 6: all text in caps using css

.class_name {
  text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}

Tags:

Css Example