例
下線付きのテキストで、行の色を変更します。
document.getElementById("myP").style.textDecorationColor = "red";
»それを自分で試してみてください 定義と使用法
textDecorationColorプロパティは、テキストの装飾の色を指定します(underlines, overlines, linethroughs) 。
注:textDecorationColorプロパティにのみ表示テキストの装飾を持つ要素に影響を持つことになります。
ブラウザのサポート
textDecorationColorプロパティは、主要なブラウザのいずれかでサポートされていません。
Firefoxは、代替、MozTextDecorationColorプロパティをサポートしています。
構文
textDecorationColorプロパティを返します:
object .style.textDecorationColor
textDecorationColorプロパティを設定します。
object .style.textDecorationColor=" プロパティ値 値 説明 color テキストの装飾の色を指定します。 initial このプロパティがデフォルト値に設定します。 最初の記事を読みます inherit その親要素からこのプロパティを継承します。 継承についての記事を読みます
技術的な詳細
デフォルト値: currentColor 戻り値: 要素のテキストの装飾色性を表す文字列、 CSSのバージョン CSS3
関連ページ
CSSリファレンス: text-decoration-color property
<スタイルオブジェクト