From the W3 - 16 Text
From the W3 - 16.5 Capitalization: the 'text-transform' property
This property controls capitalization effects of an element's text. Values have the following meanings:
.ttc{text-transform:capitalize;}
Puts the first character of each word in uppercase.
.ttu{text-transform:uppercase;}
Puts all characters of each word in uppercase.
.ttl{text-transform:lowercase;}
Puts all characters of each word in lowercase.
.ttn{text-transform:none;}
No capitalization effects.
Last modified: 2008-01-20T10:35:02-0800