Skip to content

Text Decoration ​

Utilities for specifying the decoration of a text.

Class NameCSS Equivalent
.underlinetext-decoration-line: underline;
.overlinetext-decoration-line: overline;
.line-throughtext-decoration-line: line-through;
.decoration-nonetext-decoration-line: none;

Text Decoration ​

The .{decoration} classes set the text-decoration-line property to decorate the text within the block.

.underline
.overline
.line-through
.decoration-none
CEO
Alice Johnson
alice.johnson@company.com
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>