CSS text-decoration-color プロパティ

❮ 前章へ 完全な CSS リファレンス 次へ ❯

テキストのアンダーラインの色を変更します:

p {
    text-decoration: underline;
    -moz-text-decoration-color: red; /* Code for Firefox */
    text-decoration-color: red;
}
Try it Yourself ❯

定義と用法

text-decoration-color プロパティは、text-decoration (underlines, overlines, linethroughs) の色を指定します。

注: text-decoration-color プロパティは、text-decoration を表示する要素にのみ効果があります。

デフォルト値: currentColor
継承: 継承する
アニメーション可否: 可。animatable を参照 Try it
バージョン: CSS3
JavaScript 構文: object.style.textDecorationColor="red" Try it

ブラウザ・サポート

表中の数字は、完全にプロパティをサポートした最初のブラウザのバージョンです。

-moz- の後に続く数字 は、接頭辞付きで動作した最初のバージョンです。

プロパティ
text-decoration-color 未サポート 未サポート 6.0 -moz- 未サポート 未サポート

CSS 構文

text-decoration-color: color|initial|inherit;

プロパティの値

説明 Play it
color text-decoration の色を指定します Play it ❯
initial プロパティにデフォルト値を設定します。initial を参照 Play it ❯
inherit このプロパティは親要素を継承します。inherit を参照

関連ページ

CSS チュートリアル: CSS Text

HTML DOM リファレンス:textDecorationColor プロパティ


❮ 前章へ 完全な CSS リファレンス 次へ ❯