--- title: text-underline-offset slug: Web/CSS/text-underline-offset tags: - CSS - CSS Text Decoration - CSS テキスト装飾 - Property - Reference - text-decoration - text-underline-offset - プロパティ translation_of: Web/CSS/text-underline-offset ---
text-underline-offset は CSS のプロパティで、 ({{cssxref("text-decoration")}} を使用して適用された) 下線のテキスト装飾線の本来の位置からのオフセット距離を設定します。
text-underline-offset は {{cssxref('text-decoration')}} の一括指定の一部ではありません。一つの要素が複数の text-decoration による線を持つため、 text-underline-offset は下線のみに影響し、 overline や line-through などの他の装飾線には影響しません。
/* 単一のキーワード */ text-underline-offset: auto; /* 長さ */ text-underline-offset: 0.1em; text-underline-offset: 3px; /* パーセント値 */ text-underline-offset: 20%; /* グローバル値 */ text-underline-offset: inherit; text-underline-offset: initial; text-underline-offset: unset;
text-underline-offset プロパティは、以下のリストのうち一つの値で指定します。
auto<length>em 単位を使用することを推奨します。<percentage><p class="oneline">Here's some text with an offset wavy red underline!</p> <br> <p class="twolines">This text has lines both above and below it. Only the bottom one is offset.</p>
p {
text-decoration: underline wavy red;
text-underline-offset: 1em;
}
.twolines {
text-decoration-color: purple;
text-decoration-line: underline overline;
}
{{ EmbedLiveSample('Examples', '', '', '') }}
| 仕様書 | 状態 | 備考 |
|---|---|---|
| {{SpecName('CSS4 Text Decoration', '#underline-offset', 'text-underline-offset')}} | {{Spec2('CSS4 Text Decoration')}} | 初回定義 |
{{Compat("css.properties.text-underline-offset")}}