TEXT-TRANSFORM
The text-transform property transforms text for styling purposes.
SYNTAX
CSS
text-transform: value;
JS
object.style.textTransform = "value";
VALUES
<'text-transform'> = none | [capitalize | uppercase | lowercase ] || full-width || full-size-kana
none
No effects.
capitalize
Puts the first typographic letter unit of each word, if lowercase, in titlecase; other characters are unaffected.
uppercase
Puts all letters in uppercase.
lowercase
Puts all letters in lowercase.
full-width
Puts all typographic character units in fullwidth form.
full-size-kana
Converts all small Kana characters to the equivalent full-size Kana.
INITIAL
none