Text alignment
Read about the text alignment you can use for your elements.
Class | Properties |
---|---|
text-center | text-align: center; |
text-left | text-align: left; |
text-right | text-align: right; |
text-justify | text-align: justify; |
text-justify-all | text-align: justify-all; |
text-start | text-align: start; |
text-end | text-align: end; |
text-unset | text-align: unset; |
text-initial | text-align: initial; |
text-inherit | text-align: inherit; |
text-revert | text-align: revert; |
Basic Usage
This is a paragraph with text-center class.
This is a paragraph with text-left class.
This is a paragraph with text-right class.
<p class="text-center ...">This is a paragraph with text-center class.</p>
<p class="text-left ...">This is a paragraph with text-left class.</p>
<p class="text-right ...">This is a paragraph with text-right class.</p>