description: Documentation and examples for common text utilities to control alignment, wrapping, weight, and more.
group: utilities
toc: true
---
## Text alignment
Easily realign text to components with text alignment classes.
{% example html %}
<pclass="text-justify">Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus sit amet fermentum. Donec sed odio operae, eu vulputate felis rhoncus. Praeterea iter est quasdam res quas ex communi. At nos hinc posthac, sitientis piros Afros. Petierunt uti sibi concilium totius Galliae in diem certam indicere. Cras mattis iudicium purus sit amet fermentum.</p>
{% endexample %}
For left, right, and center alignment, responsive classes are available that use the same viewport width breakpoints as the grid system.
{% example html %}
<pclass="text-left">Left aligned text on all viewport sizes.</p>
<pclass="text-center">Center aligned text on all viewport sizes.</p>
<pclass="text-right">Right aligned text on all viewport sizes.</p>
<pclass="text-sm-left">Left aligned text on viewports sized SM (small) or wider.</p>
<pclass="text-md-left">Left aligned text on viewports sized MD (medium) or wider.</p>
<pclass="text-lg-left">Left aligned text on viewports sized LG (large) or wider.</p>
<pclass="text-xl-left">Left aligned text on viewports sized XL (extra-large) or wider.</p>
{% endexample %}
## Text wrapping and overflow
Prevent text from wrapping with a `.text-nowrap` class.
For longer content, you can add a `.text-truncate` class to truncate the text with an ellipsis. **Requires `display: inline-block` or `display: block`.**