Text Align ​
Utilities for specifying the alignment of a text.
| Class Name | CSS Equivalent |
|---|---|
| .text-start | text-align: start; |
| .text-end | text-align: end; |
| .text-left | text-align: left; |
| .text-right | text-align: right; |
| .text-center | text-align: center; |
| .text-justify | text-align: justify; |
Text Align ​
The .text-{alignment} classes set the text-align property to align the text within the block.
html
<div class="text-start">This is a text with start alignment</div>
<div class="text-end">This is a text with end alignment</div>
<div class="text-left">This is a text with left alignment</div>
<div class="text-right">This is a text with right alignment</div>
<div class="text-center">This is a text with center alignment</div>
<div class="text-justify">This is a text with justify alignment</div>