【CSS】text-decoration-color - テキストの装飾(カラー)

【CSS】text-decoration-color - テキストの装飾(カラー)

CSSのtext-decoration-colorプロパティについて解説します。

検証環境

text-decoration-color

text-decoration-colorは“テキスト装飾のカラー”のプロパティです。

基本構文

text-decoration-color: 値;

サンプル

テキストの装飾カラーを赤色に設定するサンプルです。

<style>
p {
    text-decoration-line: underline;
    ___ih_hl_start
    text-decoration-color: red;
    ___ih_hl_end
}
</style>

<p>CSS : Cascading Style Sheets</p>