Text Transformation CSS Text Transformation Text can be formatted with uppercase and lowercase letters using the text-transform property.It can be used to capitalize the first letter of each word or to change everything to uppercase or lowercase letters: Example p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } p.capitalize { text-transform: capitalize; } The CSS Text Transformation Property Property Description text-transform Controls the capitalization of text Tagged:CSS