πͺText Transform
.text-lowercase
.text-lowercaseTransforms the text to lowercase.
CSS equivalent: text-transform: lowercase;
Example usage:
<span class="text-lowercase">This text is transformed to lowercase.</span>.lowercase
.lowercaseTransforms the text to lowercase.
CSS equivalent: text-transform: lowercase;
Example usage:
<span class="lowercase">This text is transformed to lowercase.</span>.text-uppercase
.text-uppercaseTransforms the text to uppercase.
CSS equivalent: text-transform: uppercase;
Example usage:
.uppercase
.uppercaseTransforms the text to uppercase.
CSS equivalent: text-transform: uppercase;
Example usage:
.text-capitalize
.text-capitalizeTransforms the text to capitalize the first letter of each word.
CSS equivalent: text-transform: capitalize;
Example usage:
.capitalize
.capitalizeTransforms the text to capitalize the first letter of each word.
CSS equivalent: text-transform: capitalize;
Example usage:
.text-none
.text-noneRemoves text transformation.
CSS equivalent: text-transform: none;
Example usage:
.sentence-case
.sentence-caseTransforms the text to sentence case.
CSS equivalent:
Example usage:
Last updated