πŸ“ͺText Transform

.text-lowercase

Transforms the text to lowercase.

CSS equivalent: text-transform: lowercase;

Example usage:

<span class="text-lowercase">This text is transformed to lowercase.</span>

.lowercase

Transforms the text to lowercase.

CSS equivalent: text-transform: lowercase;

Example usage:

<span class="lowercase">This text is transformed to lowercase.</span>

.text-uppercase

Transforms the text to uppercase.

CSS equivalent: text-transform: uppercase;

Example usage:


.uppercase

Transforms the text to uppercase.

CSS equivalent: text-transform: uppercase;

Example usage:


.text-capitalize

Transforms the text to capitalize the first letter of each word.

CSS equivalent: text-transform: capitalize;

Example usage:


.capitalize

Transforms the text to capitalize the first letter of each word.

CSS equivalent: text-transform: capitalize;

Example usage:


.text-none

Removes text transformation.

CSS equivalent: text-transform: none;

Example usage:


.sentence-case

Transforms the text to sentence case.

CSS equivalent:

Example usage:

Last updated