diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-09 10:01:28 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-15 18:39:56 +0900 |
commit | 0cf48a8e111546f6f91b987f5d214005e556c610 (patch) | |
tree | c918a03d51b17c967f48bd1651a1610692dc41e7 | |
parent | a8026efcd3bbf9ac82b6dc432fb5b5ea08af3126 (diff) | |
download | translated-content-0cf48a8e111546f6f91b987f5d214005e556c610.tar.gz translated-content-0cf48a8e111546f6f91b987f5d214005e556c610.tar.bz2 translated-content-0cf48a8e111546f6f91b987f5d214005e556c610.zip |
text-decoration-skip の変換準備
-rw-r--r-- | files/ja/web/css/text-decoration-skip/index.html | 108 | ||||
-rw-r--r-- | files/ja/web/css/text-decoration-skip/index.md | 108 |
2 files changed, 108 insertions, 108 deletions
diff --git a/files/ja/web/css/text-decoration-skip/index.html b/files/ja/web/css/text-decoration-skip/index.html deleted file mode 100644 index a429cc4cb6..0000000000 --- a/files/ja/web/css/text-decoration-skip/index.html +++ /dev/null @@ -1,108 +0,0 @@ ---- -title: text-decoration-skip -slug: Web/CSS/text-decoration-skip -tags: - - CSS - - CSS テキスト装飾 - - CSS プロパティ - - Experimental - - Reference - - ウェブ - - レイアウト -translation_of: Web/CSS/text-decoration-skip ---- -<div>{{CSSRef}}</div> - -<p><span class="seoSummary"><strong><code>text-decoration-skip</code></strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、要素に影響する要素の内容に対するテキスト装飾のどの部分をスキップする必要があるかを設定します。</span>これは要素によって描かれたテキスト装飾の行、および祖先によって描かれたすべてのテキスト装飾を制御します。</p> - -<div class="blockIndicator note"> -<p><strong>メモ:</strong> 他の多くのブラウザーでは、より単純な {{cssxref("text-decoration-skip-ink")}} プロパティへの対応に集中しています。</p> -</div> - -<pre class="brush:css no-line-numbers">/* キーワード値 */ -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; -</pre> - -<p>{{cssinfo}}</p> - -<h2 id="Syntax" name="Syntax">構文</h2> - -<h3 id="Values" name="Values">値</h3> - -<dl> - <dt><code>none</code></dt> - <dd>何もスキップされません。つまり、テキストの装飾はすべてのテキストの内容と不可分のインラインレベルボックスに渡って描かれます。</dd> - <dt><code>objects</code></dt> - <dd>要素の中で、画像やインラインブロックなどの不可分のインラインボックスのマージンボックス全体がスキップされます。</dd> - <dt><code>spaces</code></dt> - <dd>すべての空白をスキップします。すべての <a href="https://www.unicode.org/reports/tr44/#White_Space">Unicode ホワイトスペース文字</a>、すべての単語区切りに加えて、子孫の {{cssxref("letter-spacing")}} または {{cssxref("word-spacing")}} すべてです。</dd> - <dt><code>leading-spaces</code></dt> - <dd>先頭の空白のみがスキップされるという点を除いて、 <code>spaces</code> と同じです。</dd> - <dt><code>trailing-spaces</code></dt> - <dd>末尾の空白のみがスキップされるという点を除いて、 <code>spaces</code> と同じです。</dd> - <dt><code>edges</code></dt> - <dd>テキスト装飾の始点と終点を、装飾ボックスのコンテンツの辺からわずかに (例えば線の太さの半分だけ) 離します。つまり、子孫ボックスには個別に下線が引かれます。 (これは中国語で、区切って下線を引くのに重要です。)</dd> - <dd><img alt='"text-decoration-skip: edges;" の例です。' src="https://mdn.mozillademos.org/files/13466/decoration-skip-edges.png"></dd> - <dt><code>box-decoration</code></dt> - <dd>テキストの装飾はボックスのマージン、境界、パディング領域をスキップします。これは祖先により重ねられた装飾の効果のみを持ちます。<em>装飾ボックス</em>はボックスの装飾の上に描画を行いません。</dd> -</dl> - -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> - -{{csssyntax}} - -<h2 id="Example" name="Example">例</h2> - -<h3 id="HTML">HTML</h3> - -<pre class="brush: html"><p>Hey, grab a cup of <em>coffee!</em></p></pre> - -<h3 id="CSS">CSS</h3> - -<pre class="brush: css; highlight[4]">p { - margin: 0; - font-size: 3em; - text-decoration: underline; - text-decoration-skip: edges; -}</pre> - -<h3 id="Result" name="Result">結果</h3> - -<p>{{EmbedLiveSample("Example", "100%", 150)}}</p> - -<h2 id="Specifications" name="Specifications">仕様書</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - <th scope="col">備考</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName("CSS4 Text Decoration", "#text-decoration-skip-property", "text-decoration-skip")}}</td> - <td>{{Spec2("CSS4 Text Decoration")}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<p>{{Compat("css.properties.text-decoration-skip")}}</p> diff --git a/files/ja/web/css/text-decoration-skip/index.md b/files/ja/web/css/text-decoration-skip/index.md new file mode 100644 index 0000000000..3c9c0ddab5 --- /dev/null +++ b/files/ja/web/css/text-decoration-skip/index.md @@ -0,0 +1,108 @@ +--- +title: text-decoration-skip +slug: Web/CSS/text-decoration-skip +tags: + - CSS + - CSS プロパティ + - CSS テキスト装飾 + - Experimental + - レイアウト + - Reference + - Web + - recipe:css-property +browser-compat: css.properties.text-decoration-skip +translation_of: Web/CSS/text-decoration-skip +--- +{{CSSRef}} + +**`text-decoration-skip`** は [CSS](/ja/docs/Web/CSS) のプロパティで、要素に影響する要素の内容に対するテキスト装飾のどの部分をスキップする必要があるかを設定します。これは要素によって描かれたテキスト装飾の行、および祖先によって描かれたすべてのテキスト装飾を制御します。 + +> **Note:** 他の多くのブラウザーでは、より単純な {{cssxref("text-decoration-skip-ink")}} プロパティへの対応に集中しています。 + +```css +/* キーワード値 */ +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: revert; +text-decoration-skip: unset; +``` + +## 構文 + +### 値 + +- `none` + - : 何もスキップされません。つまり、テキストの装飾はすべてのテキストの内容と不可分のインラインレベルボックスに渡って描かれます。 +- `objects` + - : 要素の中で、画像やインラインブロックなどの不可分のインラインボックスのマージンボックス全体がスキップされます。 +- `spaces` + - : すべての空白をスキップします。すべての [Unicode ホワイトスペース文字](https://www.unicode.org/reports/tr44/#White_Space)、すべての単語区切りに加えて、子孫の {{cssxref("letter-spacing")}} または {{cssxref("word-spacing")}} すべてです。 +- `leading-spaces` + - : 先頭の空白のみがスキップされるという点を除いて、 `spaces` と同じです。 +- `trailing-spaces` + - : 末尾の空白のみがスキップされるという点を除いて、 `spaces` と同じです。 +- `edges` + + - : テキスト装飾の始点と終点を、装飾ボックスのコンテンツの辺からわずかに (例えば線の太さの半分だけ) 離します。つまり、子孫ボックスには個別に下線が引かれます。 (これは中国語では、区切って下線を引くのに重要です。) + + !["text-decoration-skip: edges;" の例です。](decoration-skip-edges.png) + +- `box-decoration` + - : テキストの装飾はボックスのマージン、境界、パディング領域をスキップします。これは祖先により重ねられた装飾の効果のみを持ちます。*装飾ボックス*はボックスの装飾の上に描画を行いません。 + +## 公式定義 + +{{CSSInfo}} + +## 形式文法 + +{{csssyntax}} + +## 例 + +<h3 id="Skipping_edges">エッジをスキップ</h3> + +#### HTML + +```html +<p>Hey, grab a cup of <em>coffee!</em></p> +``` + +#### CSS + +```css +p { + margin: 0; + font-size: 3em; + text-decoration: underline; + text-decoration-skip: edges; +} +``` + +#### 結果 + +{{EmbedLiveSample("Skipping_edges", "100%", 150)}} + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- [`text-decoration-skip-ink`](/ja/docs/Web/CSS/text-decoration-skip-ink) |