Text Transform

Utilities for controlling the transformation of text.

Transform text in components with text capitalization classes.

ClassProperties
.text-lowercasetext-transform: lowercase;
.text-uppercasetext-transform: uppercase;
.text-capitalizetext-transform: capitalize;

Basic usage

Transforming text

The text-uppercase and text-lowercase will uppercase and lowercase text respectively, whereas text-capitalize utility will convert text to title-case.

text-uppercase

The quick brown fox jumps over the lazy dog.

text-lowercase

The quick brown fox jumps over the lazy dog.

text-capitalize

The quick brown fox jumps over the lazy dog.

<p class="text-uppercase ...">...</p>
<p class="text-lowercase ...">...</p>
<p class="text-capitalize ...">...</p>