Text Transform

Class Properties
t.normalCase textTransform: 'none'
t.uppercase textTransform: 'uppercase'
t.lowercase textTransform: 'lowercase'
t.capitalize textTransform: 'capitalize'

Normal Case

Use the t.normalCase utility to preserve the original casing. This is typically used to reset capitalization at different breakpoints.

The quick brown fox jumped over the lazy dog.

Uppercase

Use the t.uppercase utility to uppercase text.

The quick brown fox jumped over the lazy dog.

Lowercase

Use the t.lowercase utility to lowercase text.

The quick brown fox jumped over the lazy dog.

Capitalize

Use the t.capitalize utility to capitalize text.

The quick brown fox jumped over the lazy dog.