how to make text uppercase in css

CSS
/*
The text-transform property controls the capitalization of text.
*/

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

/*
none		-> No capitalization. The text renders as it is. This is default	
capitalize	-> Transforms the first character of each word to uppercase	
uppercase	-> Transforms all characters to uppercase	
lowercase	-> Transforms all characters to lowercase	
initial	    -> Sets this property to its default value. Read about initial	
inherit	    -> Inherits this property from its parent element. Read about inherit
*/

Example
Transform text in different <div> elements:

div.a {
  text-transform: uppercase;
}

div.b {
  text-transform: lowercase;
}

div.c {
  text-transform: capitalize;
}

/* For more you can refer https://www.w3schools.com/cssref/pr_text_text-transform.asp*//* 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;
}  
    div.a {
  text-transform: uppercase;
}


    div.b {
  text-transform: lowercase;
}


    div.c {
  text-transform: capitalize;
} 
Source

Also in CSS: