diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-16 09:22:22 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-23 22:44:12 +0900 |
commit | f3342730753b5572677b7c938f889f6fcd9cd869 (patch) | |
tree | 062f5c00e2e51197c7f58619b2cbd759e19fefc9 /files/ja/web/css/contain | |
parent | 1ef73613664355350a6437269b8cff2cca472412 (diff) | |
download | translated-content-f3342730753b5572677b7c938f889f6fcd9cd869.tar.gz translated-content-f3342730753b5572677b7c938f889f6fcd9cd869.tar.bz2 translated-content-f3342730753b5572677b7c938f889f6fcd9cd869.zip |
2021/08/16 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/contain')
-rw-r--r-- | files/ja/web/css/contain/index.md | 242 |
1 files changed, 116 insertions, 126 deletions
diff --git a/files/ja/web/css/contain/index.md b/files/ja/web/css/contain/index.md index b679d3f074..15561de126 100644 --- a/files/ja/web/css/contain/index.md +++ b/files/ja/web/css/contain/index.md @@ -3,36 +3,34 @@ title: contain slug: Web/CSS/contain tags: - CSS - - CSS Containment - - CSS Property - - Layout + - CSS 封じ込め + - CSS プロパティ + - レイアウト - NeedsExample - Paint - - Reference + - リファレンス - Style - - Web - - 'recipe:css-property' + - ウェブ + - recipe:css-property +browser-compat: css.properties.contain translation_of: Web/CSS/contain --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><strong>`contain`</strong> は <a href="/ja/docs/Web/CSS">CSS</a> のプロパティで、ある要素とその内容が、できる限り多く、文書ツリーの他の部分から<em>独立している</em>ことを示します。これによってブラウザーがレイアウト、スタイル、描画、寸法、およびその組み合わせの再計算を、ページ全体ではなく DOM の限られた領域に対して行うことで、性能上の明らかな利点をもたらします。</p> +**`contain`** は [CSS](/ja/docs/Web/CSS) のプロパティで、ある要素とその内容が、できる限り多く、文書ツリーの他の部分から*独立している*ことを示します。これによってブラウザーがレイアウト、スタイル、描画、寸法、およびその組み合わせの再計算を、ページ全体ではなく DOM の限られた領域に対して行うことで、性能上の明らかな利点をもたらします。 -<p>このプロパティはページ上にそれぞれ独立したたくさんのウィジェットがあるときに有益であり、ウィジェットの内部を、ウィジェットの囲みボックスの外側の副作用から守るために使用することができます。</p> +このプロパティはページ上にそれぞれ独立したたくさんのウィジェットがあるときに有益であり、ウィジェットの内部を、ウィジェットの囲みボックスの外側の副作用から守るために使用することができます。 -<div class="blockIndicator note"> -<p><strong>注:</strong> (`paint`, `strict`, `content` のいずれかの値で) 適用された場合、このプロパティは以下のものを生成します。</p> +> **Note:** (`paint`, `strict`, `content` のいずれかの値で) 適用された場合、このプロパティは以下のものを生成します。 +> +> 1. 新しい[包含ブロック](/ja/docs/Web/CSS/Containing_block) ({{cssxref("position")}} プロパティが `absolute` または `fixed` である子孫を対象とする)。 +> 2. 新しい[重ね合わせコンテキスト](/ja/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context)。 +> 3. 新しい[ブロック整形コンテキスト](/ja/docs/Web/Guide/CSS/Block_formatting_context)。 -<ol> - <li>新しい<a href="/ja/docs/Web/CSS/Containing_block">包含ブロック</a> (対象は {{cssxref("position")}} プロパティが `absolute` または `fixed` の子孫)。</li> - <li>新しい<a href="/ja/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context">重ね合わせコンテキスト</a>。</li> - <li>新しい<a href="/ja/docs/Web/Guide/CSS/Block_formatting_context">ブロック整形コンテキスト</a>。</li> -</ol> -</div> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush: css no-line-numbers notranslate ">/* キーワード値 */ +```css +/* キーワード値 */ contain: none; contain: strict; contain: content; @@ -48,122 +46,129 @@ contain: size layout paint; /* グローバル値 */ contain: inherit; contain: initial; -contain: unset;</pre> +contain: revert; +contain: unset; +``` -<p>`contain` プロパティは以下のうちの一つで指定します。</p> +`contain` プロパティは、以下のうちの一つで指定します。 -<ul> - <li>`none`, `strict`, `content` の何れかのキーワードを単独で使用。</li> - <li>`size`, `layout`, `style`, and `paint` の各キーワードを1つ以上、任意の順序で使用。</li> -</ul> +- `none`, `strict`, `content` の何れかのキーワードを単独で使用。 +- `size`, `layout`, `style`, and `paint` の各キーワードを 1 つ以上、任意の順序で使用。 -<h3 id="Values" name="Values">値</h3> +### 値 -<dl> - <dt>`none`</dt> - <dd>その要素が通常通り描画され、抑制を適用しないことを示します。</dd> - <dt>`strict`</dt> - <dd>`style` を除くすべての抑制規則がその要素に適用されることを示します。これは `contain: size layout paint` と同等です。</dd> - <dt>`content`</dt> - <dd>`size` および `style` 以外の抑制規則がその要素に適用されることを示します。これは `contain: layout paint` と同等です。</dd> - <dt>`size`</dt> - <dd>子孫の寸法を確認する必要なく、その要素の寸法を変更できることを示します。</dd> - <dt>`layout`</dt> - <dd>要素の外側が内部のレイアウトなどに影響しないことを示します。</dd> - <dt>`style`</dt> - <dd>ある要素とその子孫以外に影響を及ぼす可能性のあるプロパティの場合、その要素が含まれている要素をエスケープしないことを示します。なお、この値は仕様書で「リスクあり」と位置づけられており、どこでも対応しているとは限りません。</dd> - <dt>`paint`</dt> - <dd>その要素の子孫を、境界の外に表示しないことを示します。包含ボックスが画面外の場合、ブラウザーは中の要素を描画する必要はありません。 — そのボックスに完全に含まれていれば、やはり画面外にあるからです。そして、子孫が包含要素の領域を溢れている場合、子孫は包含要素の境界ボックスで切り取られます。</dd> -</dl> +- `none` + - : その要素が通常通り描画され、封じ込めを適用しないことを示します。 +- `strict` + - : `style` を除くすべての封じ込め規則がその要素に適用されることを示します。これは `contain: size layout paint` と同等です。 +- `content` + - : `size` および `style` 以外の封じ込め規則がその要素に適用されることを示します。これは `contain: layout paint` と同等です。 +- `size` + - : 子孫の寸法を確認する必要なく、その要素の寸法を変更できることを示します。 +- `layout` + - : 要素の外側が内部のレイアウトなどに影響しないことを示します。 +- `style` + - : ある要素とその子孫以外に影響を及ぼす可能性のあるプロパティの場合、その要素が含まれている要素をエスケープしないことを示します。 +- `paint` + - : その要素の子孫を、境界の外に表示しないことを示します。包含ボックスが画面外の場合、ブラウザーは中の要素を描画する必要はありません。 — そのボックスに完全に含まれていれば、やはり画面外にあるからです。そして、子孫が包含要素の領域を溢れている場合、子孫は包含要素の境界ボックスで切り取られます。 -<h2 id="Formal_definition" name="Formal_definition">公式定義</h2> +## 公式定義 -<p>{{cssinfo}}</p> +{{cssinfo}} -<h2 id="Formal_syntax" name="Formal_syntax">形式文法</h2> +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 -<h3 id="Simple_layout" name="Simple_layout">単純なレイアウト</h3> +### 単純なレイアウト -<p>以下のマークアップは多数のコンテンツを持つ記事からなるものです。</p> +以下のマークアップは多数のコンテンツを持つ記事からなるものです。 -<pre class="brush: html notranslate"><h1>My blog</h1> -<article> - <h2>Heading of a nice article</h2> - <p>Content here.</p> -</article> -<article> - <h2>Another heading of another article</h2> - <img src="graphic.jpg" alt="photo"> - <p>More content here.</p> -</article></pre> +```html +<h1>My blog</h1> +<article> + <h2>Heading of a nice article</h2> + <p>Content here.</p> +</article> +<article> + <h2>Another heading of another article</h2> + <img src="graphic.jpg" alt="photo"> + <p>More content here.</p> +</article> +``` -<p>それぞれの `<article>` および `<img>` には境界があり、画像は浮動状態です。</p> +それぞれの `<article>` および `<img>` には境界があり、画像は浮動状態です。 -<pre class="brush: css notranslate">img { +```css +img { float: left; border: 3px solid black; } article { border: 1px solid black; -}</pre> +} +``` + +{{EmbedGHLiveSample("css-examples/contain/simple-layout.html", '100%', 400)}} -<p>{{EmbedLiveSample('Simple_layout', '100%', '300')}}</p> +問題はすぐにわかるでしょう。 — 記事の最下部を超えている浮動要素を解消する対策をしていません。 <h3 id="Float_interference" name="Float_interference">浮動要素の干渉</h3> -<p>1つ目の記事の下部に別の画像を挿入すると、 DOM ツリーの大部分が再レイアウトされたり、再描画されたりする可能性があり、2つ目の記事のレイアウトにも支障をきたしてしまいます。</p> - -<pre class="brush: html notranslate"><h1>My blog</h1> -<article> - <h2>Heading of a nice article</h2> - <p>Content here.</p> - <img src="i-just-showed-up.jpg" alt="social"> -</article> -<article> - <h2>Another heading of another article</h2> - <img src="graphic.jpg" alt="photo"> - <p>More content here.</p> -</article></pre> - -<div class="hidden"> -<pre class="brush: css notranslate">img { +1 つ目の記事の下部に別の画像を挿入すると、 DOM ツリーの大部分が再レイアウトされたり、再描画されたりする可能性があり、 2 つ目の記事のレイアウトにも支障をきたしてしまいます。 + +```html +<h1>My blog</h1> +<article> + <h2>Heading of a nice article</h2> + <p>Content here.</p> + <img src="i-just-showed-up.jpg" alt="social"> +</article> +<article> + <h2>Another heading of another article</h2> + <img src="graphic.jpg" alt="photo"> + <p>More content here.</p> +</article> +``` + +```css hidden +img { float: left; border: 3px solid black; } article { border: 1px solid black; -}</pre> -</div> +} +``` -<p>ご覧の通り、浮動要素の動作方法が原因で、最初の画像が2つ目の記事の領域内に掛かってしまっています。</p> +ご覧の通り、浮動要素の動作方法が原因で、最初の画像が 2 つ目の記事の領域内に掛かってしまっています。 -<p>{{EmbedLiveSample('Float_interference', '100%', '300')}}</p> +{{EmbedGHLiveSample("css-examples/contain/float-interference.html", '100%', 400)}} -<h3 id="Fixing_with_contain" name="Fixing_with_contain">contain による修正</h3> +### contain による修正 -<p>それぞれの `article` の `contain` プロパティを `content` の値を設定することで、新しい要素が挿入されたときに、ブラウザーはそれが含まれる要素のサブツリーの再計算をするだけで、その外側には何もする必要がないことを理解します。</p> +それぞれの `article` の `contain` プロパティを `content` の値を設定すれば、新しい要素が挿入されたときに、ブラウザーはそれが含まれる要素のサブツリーの再計算をするだけで、その外側には何もする必要がないことを理解します。 -<div class="hidden"> -<pre class="brush: html notranslate"><h1>My blog</h1> -<article> - <h2>Heading of a nice article</h2> - <p>Content here.</p> - <img src="i-just-showed-up.jpg" alt="social"> -</article> -<article> - <h2>Another heading of another article</h2> - <img src="graphic.jpg" alt="photo"> - <p>More content here.</p> -</article></pre> -</div> +```html hidden +<h1>My blog</h1> +<article> + <h2>Heading of a nice article</h2> + <p>Content here.</p> + <img src="i-just-showed-up.jpg" alt="social"> +</article> +<article> + <h2>Another heading of another article</h2> + <img src="graphic.jpg" alt="photo"> + <p>More content here.</p> +</article> +``` -<pre class="brush: css notranslate">img { +```css +img { float: left; border: 3px solid black; } @@ -171,38 +176,23 @@ article { article { border: 1px solid black; contain: content; -}</pre> +} +``` -<p>これで、最初の画像が2つ目の記事の下に浮いてくることなく、包含する要素の範囲内に留まることも意味します。</p> +これは最初の画像についても、 2 つ目の記事の下に浮遊せずに、包含する要素の範囲内に留まることも意味します。 -<p>{{EmbedLiveSample('Fixing_with_contain', '100%', '330')}}</p> +{{EmbedGHLiveSample("css-examples/contain/contain-fix.html", '100%', 500)}} -<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('CSS Containment')}}</td> - <td>{{Spec2('CSS Containment')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> +## ブラウザーの互換性 -<p>{{Compat("css.properties.contain")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/CSS/CSS_Containment">CSS 抑制</a></li> - <li>CSS の {{cssxref("position")}} プロパティ</li> -</ul> +- [CSS 封じ込め](/ja/docs/Web/CSS/CSS_Containment) +- CSS の {{cssxref("content-visibility")}} プロパティ +- CSS の {{cssxref("position")}} プロパティ |