You are here : cssCSS 3text-transform

text-transform - CSS 3

The text-transform property controls the capitalization of text.


Syntax

text-transform: none|capitalize|uppercase|lowercase|initial|inherit;


Example

p.uppercase {    text-transform: uppercase;}
	p.lowercase {    text-transform: lowercase;}
	p.capitalize {    text-transform: capitalize;}


Output / Return Value


Limitations


Alternatives / See Also


Reference