Text Transformation ​
Utilities for specifying the transformation of text.
| Class Name | CSS Equivalent |
|---|---|
| .capitalize | text-transform: capitalize; |
| .uppercase | text-transform: uppercase; |
| .lowercase | text-transform: lowercase; |
| .case-normal | text-transform: none; |
Text Transformation Classes ​
The .{transform} classes set the text-transform property to control the transformation of text within the block.
html
<div class="capitalize">This text is capitalized</div>
<div class="uppercase">This text is in uppercase</div>
<div class="lowercase">This text is in lowercase</div>
<div class="case-normal">This text has no transformation</div>