π Introduction
The text-decoration property in CSS is used to apply text decorations such asunderline, overline, line-through, and more β all in a single shorthand property. It allows you to style text links, headings, labels, menu items, and any inline text with one clean, concise declaration. β¨
π― Why Use text-decoration?
- To underline or strike through text effectively βοΈ
- To combine multiple decoration properties in one rule π¨
- To create modern link styles π
- To adjust decoration styles, colors, and thickness in shorthand
π§ What is the text-decoration Shorthand?
The text-decoration property is a shorthand for these individual properties:
text-decoration-linetext-decoration-styletext-decoration-colortext-decoration-thickness
Using text-decoration lets you set all of them at once. π
β¨ Syntax
Basic Syntax
text-decoration: line style color thickness;Note
π§© Available text-decoration Values
1. Line Options
- none
- underline
- overline
- line-through
2. Style Options
- solid
- dashed
- dotted
- double
- wavy
3. Color Options
Accepts any valid CSS color: hex, rgb, hsl, named colors, etc.
4. Thickness Options
Accepts lengths (px, em) or percentages.
π₯ Examples
1. Underline Only
Underline
p {
text-decoration: underline;
}2. Strike-through With Color
Line-through with color
.old-price {
text-decoration: line-through red;
}3. Fancy Underline Style
Styled underline
.fancy {
text-decoration: underline wavy #ff5733 3px;
}4. Overline + Custom Thickness
Overline with thickness
h1 {
text-decoration: overline solid 2px;
}5. Full Modern Link Styling
Modern link design
a {
color: #222;
text-decoration: underline dotted #0077ff 2px;
text-underline-offset: 4px;
}π Comparison Table
| Shorthand Value | Meaning |
|---|---|
| underline | Underline with default style & color |
| line-through red | Strike-through in red |
| underline wavy blue 3px | Wavy blue underline with thickness |
| overline double #000 | Double overline in black |
πΌοΈ Visual Example
Further details can be found at: https://dummyimage.com/800x230/eeeeee/000000&text=text-decoration+preview
π Conclusion
The text-decoration property is a powerful shorthand that lets you style text decorations quickly and beautifully. With full control over line, style, color, and thickness, you can create clean, modern, and expressive text styles for your website. Master it and elevate your typography today! π