Typography
Text Decoration
Utilities for controlling the decoration of text.
Quick reference
Class | Description |
---|---|
underline | text-decoration-line: underline |
line-through | text-decoration-line: line-through |
no-underline | text-decoration: none |
Basic usage
Setting the text decoration
Control how text is decorated with the underline
, no-underline
, and line-through
utilities.
underline
The quick smart warp scientist
line-throughThe quick smart warp scientist
no-underlineThe quick smart warp scientist
html
<p class="underline...">The quick smart warp scientist ...</p>
<p class="line-through ...">The quick smart warp scientist ...</p>
<p class="no-underline ...">The quick smart warp scientist ...</p>