text-transform is a CSS property used to change the display of text by transforming it in different ways. It allows you to change the capitalization, make all uppercase, all lowercase, or capitalize the first letter of each word.
Here are the possible values for text-transform:
Example
HTML
<h1> Hello </h1>
CSS
h1 {
text-transform: uppercase;
}
Result: