text.lower() css code example
Example 1: input uppercase with css
input {
text-transform: uppercase;
}
Example 2: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}
input {
text-transform: uppercase;
}
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}