CSS Property: text-transform
Converts the case of letters — to uppercase, lowercase, or capitalized.
Possible Values
Value | Description |
---|---|
none | |
uppercase | All characters converted to uppercase. |
lowercase | All characters converted to lowercase. |
capitalize | The first character of each word is converted to uppercase. Other characters remain unchanged. |
inherit |
Example
h1 { text-transform: uppercase; }