CSS Text Transformation
- Previous Page CSS Text Decoration
- Next Page CSS Word Spacing
Text Transformation
text-transform
The property is used to specify uppercase and lowercase letters in text.
It can be used to convert all content to uppercase or lowercase letters, or to capitalize the first letter of each word:
Example
p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } p.capitalize { text-transform: capitalize; }
- Previous Page CSS Text Decoration
- Next Page CSS Word Spacing