Use the text-transform Property to Make Text Uppercase
Summary
- The
text-transform
property in CSS is used to change the appearance of text. lowercase
: “transform me” uppercase
: “TRANSFORM ME” capitalize
: “Transform Me” initial
: Use the default value inherit
: Use the text-transform value from the parent element none
: Default: Use the original text
Final Code