Wayne
4
Q:

css all uppercase to capitalize

.link {
  text-transform: lowercase;
 
}

.link::first-line {
  text-transform: capitalize;
}
1
/* Answer to: "css all caps" */

/*
  The text-transform property controls the capitalization of text.
  For an interactive demonstration on each property value, go to:
  https://www.w3schools.com/cssref/playit.asp?filename=playcss_text-transform&preval=uppercase

  Syntax: text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
*/

div.a {
  text-transform: uppercase;
}

div.b {
  text-transform: lowercase;
}

div.c {
  text-transform: capitalize;
}
11
.link {
  text-transform: lowercase;
}

.link::first-line {
  text-transform: capitalize;
}
-1
input { 
    text-transform: uppercase;
}
0

New to Communities?

Join the community