--- title: text-decoration-skip slug: Web/CSS/text-decoration-skip tags: - CSS - CSS テキスト装飾 - CSS プロパティ - Experimental - Reference - ウェブ - レイアウト translation_of: Web/CSS/text-decoration-skip ---
text-decoration-skip
は CSS のプロパティで、要素に影響する要素の内容に対するテキスト装飾のどの部分をスキップする必要があるかを設定します。これは要素によって描かれたテキスト装飾の行、および祖先によって描かれたすべてのテキスト装飾を制御します。
メモ: 他の多くのブラウザーでは、より単純な {{cssxref("text-decoration-skip-ink")}} プロパティへの対応に集中しています。
/* キーワード値 */ text-decoration-skip: none; text-decoration-skip: objects; text-decoration-skip: spaces; text-decoration-skip: edges; text-decoration-skip: box-decoration; /* 複数のキーワード */ text-decoration-skip: objects spaces; text-decoration-skip: leading-spaces trailing-spaces; text-decoration-skip: objects edges box-decoration; /* グローバル値 */ text-decoration-skip: inherit; text-decoration-skip: initial; text-decoration-skip: unset;
{{cssinfo}}
none
objects
spaces
leading-spaces
spaces
と同じです。trailing-spaces
spaces
と同じです。edges
box-decoration
{{csssyntax}}
<p>Hey, grab a cup of <em>coffee!</em></p>
p { margin: 0; font-size: 3em; text-decoration: underline; text-decoration-skip: edges; }
{{EmbedLiveSample("Example", "100%", 150)}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS4 Text Decoration", "#text-decoration-skip-property", "text-decoration-skip")}} | {{Spec2("CSS4 Text Decoration")}} | 初回定義 |
{{Compat("css.properties.text-decoration-skip")}}