Text Transform
Read about how you can use text transform for your elements.
Class | Properties |
---|---|
tt-uppercase | text-transform: uppercase; |
tt-none | text-transform: none; |
tt-capitalize | text-transform: capitalize; |
tt-lowercase | text-transform: lowercase; |
tt-revert | text-transform: revert; |
tt-inherit | text-transform: inherit; |
Basic Usage
This is a paragraph with text-transform-uppercase class.
This is a paragraph with text-transform-none class.
This is a paragraph with text-transform-capitalize class.
This is a paragraph with text-transform-lowercase class.
<p class="tt-uppercase ...">
This is a paragraph with text-transform-uppercase class.
</p>
<p class="tt-none ...">This is a paragraph with text-transform-none class.</p>
<p class="tt-capitalize ...">
This is a paragraph with text-transform-capitalize class.
</p>
<p class="tt-lowercase ...">
This is a paragraph with text-transform-lowercase class.
</p>