text-transform
Definition
The text-transform property controls capitalization effects on text.
Example
h1 {text-transform: uppercase}
Characteristics
Possible values
capitalize- First character of each word is uppercased.
uppercase- All characters of each word are uppercased.
lowercase- All characters of each word are lowercased.
none- No capitalization effects.
inherit- Use the same computed value as the parent element for this property.
Default value
none
Applies to
All elements
Inherited
Yes
See also