CSS3.com


CSS TEXT-TRANSFORM

This property sets the casing style for a section of text. Content may not be affected if it is not in the ISO 8859-1 character set or does not have an applicable alternate case character to convert to.

Examples
p { text-transform: uppercase }
Possible Values
inherit: Explicitly sets the value of this property to that of the parent
none: Defines normal text, with lower case letters and capital letters
capitalize: Each word in a text starts with a capital letter
uppercase: Defines only capital letters
lowercase: Defines no capital letters, only lower case letters


Go Back