typography

text-decoration

Shorthand for text-decoration-line, style, color, and thickness. Used to add or remove underlines, overlines, and strike-throughs on text.

text-decoration: <line> || <style> || <color> || <thickness>

Common values

Value Effect
none Removes any decoration
underline Draws a line below the text
line-through Strike-through effect
overline Draws a line above the text
underline dotted 2px Combined line, style, and thickness

Examples

a { text-decoration: underline; text-underline-offset: 3px; }

Accessible link underline with breathing room

.price-old { text-decoration: line-through; }

Strike-through for discounted prices

button { text-decoration: none; }

Remove default underline on button links

Gotcha

Removing underlines on links reduces accessibility; keep a visual cue like color, weight, or hover state.

Related properties

← All CSS properties · CSS selectors · Grid vs Flexbox