diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-23 23:35:37 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-12-02 02:06:38 +0900 |
commit | a0316dd2c57164e53651f4cb8c8de50120e72095 (patch) | |
tree | a0aee3355da5260a953c75d472d34b312b98481e /files/ja/web/css/display-box | |
parent | ef0e5625abed731ab03ceac0379b507db4ab4fb9 (diff) | |
download | translated-content-a0316dd2c57164e53651f4cb8c8de50120e72095.tar.gz translated-content-a0316dd2c57164e53651f4cb8c8de50120e72095.tar.bz2 translated-content-a0316dd2c57164e53651f4cb8c8de50120e72095.zip |
CSS データ型に関する文書を更新
- 2021/11/23 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/display-box')
-rw-r--r-- | files/ja/web/css/display-box/index.md | 160 |
1 files changed, 75 insertions, 85 deletions
diff --git a/files/ja/web/css/display-box/index.md b/files/ja/web/css/display-box/index.md index 6211d9b8d8..ecd171bedb 100644 --- a/files/ja/web/css/display-box/index.md +++ b/files/ja/web/css/display-box/index.md @@ -5,121 +5,111 @@ tags: - CSS - CSS データ型 - CSS 表示 - - Reference + - データ型 + - リファレンス - display-box translation_of: Web/CSS/display-box --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p class="summary">これらのキーワードは、要素が表示ボックスを作るかどうかを定義します。</p> +これらのキーワードは、要素が表示ボックスを作るかどうかを定義します。 -<h2 id="Syntax" name="Syntax">構文</h2> +## 構文 -<p>有効な <code><display-box></code> の値は以下のとおりです。</p> +有効な `<display-box>` の値は以下のとおりです。 -<dl> - <dt><code>contents</code> {{Experimental_Inline}}</dt> - <dd>これらの要素は自分自身のために特定のボックスを生成しません。擬似ボックスやその子ボックスで置き換えられます。なお、 CSS Display Level 3 仕様書では、 <code>contents</code> の値が「普通ではない要素」 — 置換要素のように、 CSS ボックスの純粋な概念に従って表示されない要素に影響する方法を定義しています。詳しくは <a href="https://drafts.csswg.org/css-display/#unbox">Appendix B: Effects of display: contents on Unusual Elements</a> を参照してください。<br> - <br> - <em>ブラウザーのバグにより、現在のところ、この値を使用するとアクセシビリティツリーから要素を削除します。 — 読み上げソフトは中に何があるかを見ません。詳しくは後述の<a href="#Accessibility_concerns">アクセシビリティの考慮</a>の節をご覧ください。</em></dd> - <dt><code>none</code></dt> - <dd>要素の表示を無くし、レイアウトに影響を与えなくなります (文書は要素が存在しないかのように表示されます)。すべての子孫要素も表示がなくなります。<br> - 要素が通常占める空間を確保しつつ、実際には何も表示しないようにしたいのであれば、代わりに {{CSSxRef("visibility")}} プロパティを使用してください。</dd> -</dl> +- `contents` -<h2 id="Accessibility_concerns" name="Accessibility_concerns">アクセシビリティの考慮</h2> + - : これらの要素は自身のために特定のボックスを生成しません。擬似ボックスやその子ボックスで置き換えられます。なお、 CSS Display Level 3 仕様書では、 `contents` の値が「普通ではない要素」 — 置換要素のように、 CSS ボックスの純粋な概念に従って表示されない要素に影響する方法を定義しています。詳しくは [Appendix B: Effects of display: contents on Unusual Elements](https://drafts.csswg.org/css-display/#unbox) を参照してください。 -<p>多くのブラウザーの現在の実装では、<a href="/ja/docs/Learn/Accessibility/What_is_accessibility#Accessibility_APIs">アクセシビリティツリー</a>から <code>display</code> の値が <code>contents</code> である要素を削除します。これにより、その要素は — また、一部の版のブラウザーではその子孫要素も — 読み上げ技術で読み上げられなくなります。これは <a href="https://drafts.csswg.org/css-display/#the-display-properties">CSSWG 仕様書</a>によれば、正しくない動作です。</p> + _ブラウザーのバグにより、現在のところ、この値を使用するとアクセシビリティツリーから要素を削除します。 — 読み上げソフトは中に何があるかを見ません。詳しくは後述の[アクセシビリティの考慮](#アクセシビリティの考慮)の節をご覧ください。_ +- `none` + - : 要素の表示を無くし、レイアウトに影響を与えなくなります (文書は要素が存在しないかのように表示されます)。すべての子孫要素も表示がなくなります。 + 要素が通常占める空間を確保しつつ、実際には何も表示しないようにしたいのであれば、代わりに {{CSSxRef("visibility")}} プロパティを使用してください。 -<ul> - <li><a class="external" href="https://hiddedevries.nl/en/blog/2018-04-21-more-accessible-markup-with-display-contents">More accessible markup with display: contents | Hidde de Vries</a></li> - <li><a class="external" href="http://adrianroselli.com/2018/05/display-contents-is-not-a-css-reset.html">Display: Contents Is Not a CSS Reset | Adrian Roselli</a></li> -</ul> +## アクセシビリティの考慮 -<h2 id="Examples" name="Examples">例</h2> +多くのブラウザーの現在の実装では、[アクセシビリティツリー](/ja/docs/Learn/Accessibility/What_is_accessibility#accessibility_apis)から `display` の値が `contents` である要素を削除します。これにより、その要素は — また、一部の版のブラウザーではその子孫要素も — 読み上げ技術で読み上げられなくなります。これは [CSSWG 仕様書](https://drafts.csswg.org/css-display/#the-display-properties)によれば、正しくない動作です。 -<p>最初の例では、 secret クラスの段落に <code>display: none</code> を設定します。ボックスとその内容は表示されなくなります。</p> +- [More accessible markup with display: contents | Hidde de Vries](https://hiddedevries.nl/en/blog/2018-04-21-more-accessible-markup-with-display-contents) +- [Display: Contents Is Not a CSS Reset | Adrian Roselli](https://adrianroselli.com/2018/05/display-contents-is-not-a-css-reset.html) -<h3 id="display_none">display: none</h3> +## 例 -<h4 id="HTML">HTML</h4> +最初の例では、 secret クラスの段落に `display: none` を設定します。ボックスとその内容は表示されなくなります。 -<pre class="brush: html notranslate"><p>Visible text</p> -<p class="secret">Invisible text</p></pre> +### display: none -<h4 id="CSS">CSS</h4> +#### HTML -<pre class="brush: css notranslate">p.secret { +```html +<p>Visible text</p> +<p class="secret">Invisible text</p> +``` + +#### CSS + +```css +p.secret { display: none; -}</pre> +} +``` -<h4 id="Result" name="Result">結果</h4> +#### 結果 -<p>{{EmbedLiveSample("display_none", "100%", 60)}}</p> +{{EmbedLiveSample("display_none", "100%", 60)}} -<h3 id="display_contents">display: contents</h3> +### display: contents -<p>この例では、外側の {{htmlelement("div")}} が2ピクセルの赤い境界線と 300px の幅を持っています。しかし、 <code>display: contents</code> も指定されているので、この <code><div></code> は表示されず、境界線や幅は適用されなくなり、子要素は親要素が存在しなかったかのように表示されます。</p> +この例では、外側の {{htmlelement("div")}} が 2 ピクセルの赤い境界線と 300px の幅を持っています。しかし、 `display: contents` も指定されているので、この `<div>` は表示されず、境界線や幅は適用されなくなり、子要素は親要素が存在しなかったかのように表示されます。 -<h4 id="HTML_2">HTML</h4> +#### HTML -<pre class="brush: html notranslate"><div class="outer"> - <div>Inner div.</div> -</div> -</pre> +```html +<div class="outer"> + <div>Inner div.</div> +</div> +``` -<h4 id="CSS_2">CSS</h4> +#### CSS -<pre class="brush: css notranslate">.outer { +```css +.outer { border: 2px solid red; width: 300px; display: contents; } -.outer > div { +.outer > div { border: 1px solid green; } -</pre> - -<h4 id="Result_2" name="Result_2">結果</h4> - -<p>{{EmbedLiveSample("display_contents", 300, 60)}}</p> - -<h2 id="Specifications" name="Specifications">仕様書</h2> - -<table class="standard-table"> - <thead> - <tr> - <th scope="col">仕様書</th> - <th scope="col">状態</th> - </tr> - </thead> - <tbody> - <tr> - <td>{{SpecName('CSS3 Display', '#typedef-display-box', 'display-box')}}</td> - <td>{{Spec2('CSS3 Display')}}</td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> - -<h3 id="Support_of_contents" name="Support_of_contents">contents の対応</h3> - -<p>{{Compat("css.properties.display.contents", 10)}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>{{CSSxRef("display")}} - <ul> - <li>{{CSSxRef("<display-outside>")}}</li> - <li>{{CSSxRef("<display-inside>")}}</li> - <li>{{CSSxRef("<display-listitem>")}}</li> - <li>{{CSSxRef("<display-internal>")}}</li> - <li>{{CSSxRef("<display-legacy>")}}</li> - </ul> - </li> - <li><a href="http://adrianroselli.com/2018/05/display-contents-is-not-a-css-reset.html">Display: Contents Is Not a CSS Reset | Adrian Roselli</a></li> - <li><a href="https://hiddedevries.nl/en/blog/2018-04-21-more-accessible-markup-with-display-contents">More accessible markup with display: contents — hiddedevries.nl</a></li> -</ul> +``` + +#### 結果 + +{{EmbedLiveSample("display_contents", 300, 60)}} + +## 仕様書 + +| 仕様書 | 状態 | +| ---------------------------------------------------------------------------------------- | -------------------------------- | +| {{SpecName('CSS3 Display', '#typedef-display-box', 'display-box')}} | {{Spec2('CSS3 Display')}} | + +## ブラウザーの互換性 + +### contents の対応 + +{{Compat("css.properties.display.contents", 10)}} + +## 関連情報 + +- {{CSSxRef("display")}} + + - {{CSSxRef("<display-outside>")}} + - {{CSSxRef("<display-inside>")}} + - {{CSSxRef("<display-listitem>")}} + - {{CSSxRef("<display-internal>")}} + - {{CSSxRef("<display-legacy>")}} + +- [Display: Contents Is Not a CSS Reset | Adrian Roselli](https://adrianroselli.com/2018/05/display-contents-is-not-a-css-reset.html) +- [More accessible markup with display: contents — hiddedevries.nl](https://hiddedevries.nl/en/blog/2018-04-21-more-accessible-markup-with-display-contents) |