Text Transformation ng CSS
- Previous Page Text Decoration ng CSS
- Next Page Text Spacing ng CSS
Text Transformation
text-transform
The attribute 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 Text Decoration ng CSS
- Next Page Text Spacing ng CSS