text-decoration
text-decoration はテキストに対し下線・上線・取り消し線といった装飾的な線を指定します。
- 値
- none, underline, overline, line-through
- 初期値
- none
- 対象
- すべての要素
- 継承
- しない
- CSS レベル
- CSS 1~
値の詳細
- none
- 装飾線なし
- underline
- テキストの下に線
- overline
- テキストの上に線
- line-through
- 取り消し線
サンプル
値は複数を同時に指定することが可能です。
h2 {
text-decoration: underline overline;
}