Text Decoration β
Utilities for specifying the decoration of a text.
| Class Name | CSS Equivalent |
|---|---|
| .underline | text-decoration-line: underline; |
| .overline | text-decoration-line: overline; |
| .line-through | text-decoration-line: line-through; |
| .decoration-none | text-decoration-line: none; |
Text Decoration β
The .{decoration} classes set the text-decoration-line property to decorate the text within the block.
html
<div class="underline">This is a text with underline decoration</div>
<div class="overline">This is a text with overline decoration</div>
<div class="line-through">This is a text with line-through decoration</div>
<div class="decoration-none">This is a text with no underline decoration</div>