Text
Utilities for text alignment, transformation, wrapping, and truncation.
Alignment
Class
text-align
text-leftlefttext-centercentertext-rightrighttext-justifyjustifytext-justify-alljustify-allWhitespace
Class
Property
Value
text-nowrapwhite-spacenowrapOverflow
Class
Effect
text-truncateTruncates text with
… (requires overflow: hidden; white-space: nowrap)Transform
Class
text-transform
text-uppercaseuppercasetext-lowercaselowercasetext-capitalizecapitalizeResponsive variants
html
<p class="text-left md:text-center lg:text-right">
Responsive alignment
</p>
<span class="text-lowercase md:text-uppercase">
Responsive transform
</span>Examples
html
<p class="text-center fw-bold">Centered heading</p>
<p class="text-justify lh-relaxed">Justified paragraph text</p>
<div class="text-truncate" style="width: 200px">
Very long text that will be truncated with an ellipsis
</div>
<span class="text-uppercase ls-wider">SPACED HEADING</span>