--- title: text-decoration slug: Web/CSS/text-decoration tags: - CSS - CSS テキスト装飾 - CSS プロパティ - Reference - text-decoration - text-decoration-color - text-decoration-line - text-decoration-style translation_of: Web/CSS/text-decoration ---
{{CSSRef}}

text-decorationCSS一括指定プロパティで、テキストの装飾的な線の表示を設定します。これは {{cssxref("text-decoration-line")}}, {{cssxref("text-decoration-color")}}, {{cssxref("text-decoration-style")}} およびさらに新しい {{cssxref("text-decoration-thickness")}} プロパティの一括指定です。

{{EmbedInteractiveExample("pages/css/text-decoration.html")}}

文字列装飾は、子孫の文字列要素に適用されます。つまり、要素に文字列装飾が指定されれば、子要素では装飾を外すことができません。例えば、 <p>This text has <em>some emphasized words</em> in it.</p> という文と、 p { text-decoration: underline; } のスタイル規則では、段落全体に下線が引かれます。 em { text-decoration: none; } のスタイル規則を適用しても変化せず、段落全体に下線が引かれたままになります。しかし、 em { text-decoration: overline; } の規則で "some emphasized words" に第二の装飾が施されます。

構文

text-decoration プロパティは、個別指定の text-decoration プロパティを表す1つまたは複数の値を空白で区切って指定します。

{{cssxref("text-decoration-line")}}
使用する装飾の種類を設定します。 underlineline-through などです。
{{cssxref("text-decoration-color")}}
装飾の色を設定します。
{{cssxref("text-decoration-style")}}
装飾に使用する線のスタイルを設定します。 solid, wavy, dashed などです。
{{cssxref("text-decoration-thickness")}}
装飾に使われる線の太さを設定します。

形式文法

{{csssyntax}}

.under {
  text-decoration: underline red;
}

.over {
  text-decoration: wavy overline lime;
}

.line {
  text-decoration: line-through;
}

.plain {
  text-decoration: none;
}

.underover {
  text-decoration: dashed underline overline;
}

.thick {
  text-decoration: solid underline purple 4px;
}

.blink {
  text-decoration: blink;
}
<p class="under">This text has a line underneath it.</p>
<p class="over">This text has a line over it.</p>
<p class="line">This text has a line going through it.</p>
<p>This <a class="plain" href="#">link will not be underlined</a>,
    as links generally are by default. Be careful when removing
    the text decoration on anchors since users often depend on
    the underline to denote hyperlinks.</p>
<p class="underover">This text has lines above <em>and</em> below it.</p>
<p class="thick">This text has a really thick purple underline in supporting browsers.</p>
<p class="blink">This text might blink for you,
    depending on the browser you use.</p>

{{EmbedLiveSample('Examples','auto','320')}}

仕様書

仕様書 状態 備考
{{SpecName('CSS4 Text Decoration')}} {{Spec2('CSS4 Text Decoration')}} {{cssxref("text-decoration-thickness")}} を追加。なお、これはまだ公式には一括指定の一部ではありません。これはまだ未定義です。
{{SpecName('CSS3 Text Decoration', '#text-decoration-property', 'text-decoration')}} {{Spec2('CSS3 Text Decoration')}} 一括指定プロパティへ変更。 {{cssxref('text-decoration-style')}} の値への対応を追加。
{{SpecName('CSS2.1', 'text.html#lining-striking-props', 'text-decoration')}} {{Spec2('CSS2.1')}} 実質的な変更なし。
{{SpecName('CSS1', '#text-decoration', 'text-decoration')}} {{Spec2('CSS1')}} 初回定義

{{cssinfo}}

ブラウザーの互換性

{{Compat("css.properties.text-decoration")}}

関連情報