--- title: text-decoration-line slug: Web/CSS/text-decoration-line tags: - CSS - CSS テキスト装飾 - CSS プロパティ - Reference translation_of: Web/CSS/text-decoration-line ---
CSS の text-decoration-line
プロパティは、下線や上線など、要素内の文字列に使われる装飾の種類を設定します。
このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 https://github.com/mdn/interactive-examples をクローンしてプルリクエストを送信してください。
複数の line-decoration に関するプロパティを一度に設定するときは、代わりに一括指定の {{cssxref("text-decoration")}} プロパティを使用したほうが便利かもしれません。
/* 単一のキーワード */ text-decoration-line: none; text-decoration-line: underline; text-decoration-line: overline; text-decoration-line: line-through; text-decoration-line: blink; /* 複数のキーワード */ text-decoration-line: underline overline; /* 2つの装飾線 */ text-decoration-line: overline underline line-through; /* 複数の装飾線 */ /* グローバル値 */ text-decoration-line: inherit; text-decoration-line: initial; text-decoration-line: unset;
text-decoration-line
プロパティは none
または以下のリストにある1つ以上の空白で区切られた値を指定します。
none
underline
overline
line-through
blink
{{deprecated_inline}}<p class="wavy">Here's some text with wavy red underline!</p> <p class="both">This text has lines both above and below it.</p>
.wavy { text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: red; } .both { text-decoration-line: underline overline; }
{{ EmbedLiveSample('Examples', '', '', '') }}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('CSS3 Text Decoration', '#text-decoration-line', 'text-decoration-line')}} | {{Spec2('CSS3 Text Decoration')}} | 初回定義。 {{cssxref("text-decoration")}} プロパティが複数の関連するプロパティを定義する一括指定になりました。 |
{{cssinfo}}
{{Compat("css.properties.text-decoration-line")}}