HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

text-transform

Description

The text-transform property for CSS 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

Examples

1 · none

2 · capitalize

3 · uppercase

4 · lowercase

5 · full-width

6 · full-size-kana

7 · JS