CSS 属性:text-decoration
下划线、上划线和删除线文本。
一个简写属性,结合了 text-decoration-line、text-decoration-style 和 text-decoration-color。
可能的值
一个空格分隔的列表,包含代表 text-decoration-line、text-decoration-style 和 text-decoration-color 的值。
| 值 | 描述 | 示例 |
|---|---|---|
| [line] (等同于 text-decoration-line 的值 – 可以有多个值) |
|
underline |
| [line] [style] (等同于 text-decoration-line 的值和 text-decoration-style 的值) |
|
overline dotted |
| [line] [color] (等同于 text-decoration-line 的值和 text-decoration-color 的值) |
|
line-through red |
| [line] [style] [color] (等同于 text-decoration-line 的值、text-decoration-style 的值和 text-decoration-color 的值) |
|
underline double #06c |
inherit | ||
initial | ||
unset | ||
示例
.oldfangled a:hover { text-decoration: none }
.newfangled a:hover { text-decoration: underline overline line-through wavy #f99 }
