css all caps code example
Example 1: css all caps
.uppercase {
text-transform: uppercase;
}
#example {
text-transform: none;
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: initial;
text-transform: inherit;
}
Example 2: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}
Example 3: input uppercase with css
input {
text-transform: uppercase;
}
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;
}
Example 6: input uppercase with css
<input oninput="let p = this.selectionStart; this.value = this.value.toUpperCase();this.setSelectionRange(p, p);" />