CSS - text-decoration-color

トップ > CSSリファレンス > text-decoration-color

概要

属性名 text-decoration-color
<color>
初期値 currentColor
適用可能要素すべての要素
継承なし
サポートhttps://caniuse.com/mdn-css_properties_text-decoration-color

説明

テキストの装飾線 (上線、下線、打消し線) の色を指定します。text-decoration で他の属性とまとめて指定することもできます。

説明
<color>線の色を指定します。

使用例

CSS
.test {
  text-decoration-line: underline;
  text-decoration-color: red;
}
HTML
<div class="test">あいうえお</div>
表示
あいうえお

関連項目

text-decoration

リンク


Copyright (C) 2022 杜甫々
初版:2022年7月31日、最終更新:2022年7月31日
http://www.tohoho-web.com/css/prop/text-decoration-color.htm