--- title: text-decoration-skip-ink slug: Web/CSS/text-decoration-skip-ink tags: - CSS - CSS プロパティ - CSS テキスト装飾 - Experimental - レイアウト - Reference - Web - recipe:css-property - text-decoration-skip-ink browser-compat: css.properties.text-decoration-skip-ink translation_of: Web/CSS/text-decoration-skip-ink --- {{CSSRef}} [CSS](/ja/docs/Web/CSS) の **`text-decoration-skip-ink`** プロパティは、上線や下線が文字のアセンダーやディセンダーを通過するときにどのように引くのかを指定します。 {{EmbedInteractiveExample("pages/css/text-decoration-skip-ink.html")}} `text-decoration-skip-ink` は {{cssxref("text-decoration")}} 一括指定の一部ではありません。 ## 構文 ```css /* 単一キーワード */ text-decoration-skip-ink: none; text-decoration-skip-ink: auto; text-decoration-skip-ink: all; /* グローバルキーワード */ text-decoration-skip: inherit; text-decoration-skip: initial; text-decoration-skip-ink: revert; text-decoration-skip: unset; ``` ### 値 - `none` - : 下線と上線は、アセンダーとディセンダーの部分を含め、テキストコンテンツの全体に渡って引かれます。 - `auto` - : 既定値です。 — ブラウザーは、下線と上線が文字に触れたり近づいたりしないよう、中断を行う*可能性があります*。つまり、線が文字を横切ろうとするところで中断されます。 - `all` - : ブラウザーは、下線や上線が文字に触れたり近づいたりしないように*必ず*中断を行います。これは、 `auto` の動作が中断を発生させない可能性がある中国語、日本語、韓国語の特定のフォントで有用です。 !["text-decoration-skip-ink" の例](decoration-skip-ink.png) ## 公式定義 {{CSSInfo}} ## 形式文法 {{csssyntax}}

### HTML ```html

You should go on a quest for a cup of coffee.

Or maybe you'd prefer some tea?

この文は、 text-decoration-skip-ink: auto の使用例を示しています。

この文は、 text-decoration-skip-ink: all の使用例を示しています。

``` ### CSS ```css p { font-size: 1.5em; text-decoration: underline blue; text-decoration-skip-ink: auto; /* this is the default anyway */ } .no-skip-ink { text-decoration-skip-ink: none; } .skip-ink-all{ text-decoration-skip-ink: all; } ``` ### Result {{EmbedLiveSample("Examples", "100%", 250)}} ## 仕様書 {{Specifications}} ## ブラウザーの互換性 {{Compat}} ## 関連情報 - {{cssxref('text-decoration')}} - {{cssxref('text-decoration-skip')}}