Text Decoration

Utilities for controlling the decoration of text.

Quick reference

ClassProperties
.text-decoration-nonetext-decoration: none;
.text-decoration-underlinetext-decoration: underline;
.text-decoration-line-throughtext-decoration: line-through;
.text-decoration-overlinetext-decoration: overline;

Basic usage

Setting the text decoration

Control how text is decorated with the text-decoration-underline, text-decoration-none, and text-decoration-line-through utilities.

underline

The quick brown fox jumps over the lazy dog.

line-through

The quick brown fox jumps over the lazy dog.

overline

The quick brown fox jumps over the lazy dog.

no-decoration

The quick brown fox jumps over the lazy dog.

<p class="text-decoration-underline ...">The quick brown fox ...</p>
<p class="text-decoration-line-through ...">The quick brown fox ...</p>
<p class="text-decoration-overline ...">The quick brown fox ...</p>
<p class="text-decoration-none ...">The quick brown fox ...</p>

Remove the link underline when mouse on <a> element using text-decoration-none.

<a href="#" class="text-decoration-none">This link has its text decoration removed</a>