Text Transform
.text-lowercase
.text-lowercase
Transforms the text to lowercase.
CSS equivalent: text-transform: lowercase;
Example usage:
.lowercase
.lowercase
Transforms the text to lowercase.
CSS equivalent: text-transform: lowercase;
Example usage:
.text-uppercase
.text-uppercase
Transforms the text to uppercase.
CSS equivalent: text-transform: uppercase;
Example usage:
.uppercase
.uppercase
Transforms the text to uppercase.
CSS equivalent: text-transform: uppercase;
Example usage:
.text-capitalize
.text-capitalize
Transforms the text to capitalize the first letter of each word.
CSS equivalent: text-transform: capitalize;
Example usage:
.capitalize
.capitalize
Transforms the text to capitalize the first letter of each word.
CSS equivalent: text-transform: capitalize;
Example usage:
.text-none
.text-none
Removes text transformation.
CSS equivalent: text-transform: none;
Example usage:
.sentence-case
.sentence-case
Transforms the text to sentence case.
CSS equivalent:
Example usage:
Last updated