# Text formatting

Classes for the text formatting.

**Alignment**
- **Centered:** text-centered
- **Left:** text-left
- **Right:** text-right
- **Justify:** text-justify

**Weight**
- **Bold:** text-bold
- **Lighter:** text-lighter
- **Normal:** text-normal-weight

**Decoration**
- **Underline:** text-underline
- **Overline:** text-overline
- **Line through:** text-strikethrough
- **None:** text-undecorated

**Style**
- **Italic:** text-italic
- **Oblique:** text-oblique
- **Bold:** text-bold
- **Normal:** text-unstyled

**Transform**
- **Uppercase:** text-uppercase
- **Lowercase:** text-lowercase
- **Capitalize:** text-capitalize
- **None:** text-untransformed

**Words**
- **No wrap:** text-nowrap
- **Break:** break-words
- **Break all:** break-all
- **Keep all:** keep-all

**Cutted text (dots at the end):** cutted-text

**Normal text (clear text):** text-normal

## Examples
````Html
<!-- Bold, italic text and all letters are uppercase -->
<div class="text-bold text-italic text-uppercase">
Some content
</div>
````
