css text-transform first letter capital 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: css all uppercase to capitalize

.link {
  text-transform: lowercase;
 
}

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

Example 4: all text in caps using css

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

Example 5: css all uppercase to capitalize

.link {
  text-transform: lowercase;
}

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

Tags:

Css Example