Skip to content

Text

Utilities for text alignment, transformation, wrapping, and truncation.

Alignment

Classtext-align
text-leftleft
text-centercenter
text-rightright
text-justifyjustify
text-justify-alljustify-all

Whitespace

ClassPropertyValue
text-nowrapwhite-spacenowrap

Overflow

ClassEffect
text-truncateTruncates text with (requires overflow: hidden; white-space: nowrap)

Transform

Classtext-transform
text-uppercaseuppercase
text-lowercaselowercase
text-capitalizecapitalize

Responsive 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>