diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-03 02:17:02 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-11-11 00:03:00 +0900 |
commit | 56128e4c267e489e08b5e7108362c6c04b35c362 (patch) | |
tree | 9a8c6e174651a289f17bc02cae0dd29c93e4785f /files/ja/web/css/flex-flow/index.md | |
parent | 76c96022ca053fb17e38e3025d4007361a40e924 (diff) | |
download | translated-content-56128e4c267e489e08b5e7108362c6c04b35c362.tar.gz translated-content-56128e4c267e489e08b5e7108362c6c04b35c362.tar.bz2 translated-content-56128e4c267e489e08b5e7108362c6c04b35c362.zip |
CSS フレックスボックス関係の文書を更新
- 2021/11/01 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/flex-flow/index.md')
-rw-r--r-- | files/ja/web/css/flex-flow/index.md | 94 |
1 files changed, 45 insertions, 49 deletions
diff --git a/files/ja/web/css/flex-flow/index.md b/files/ja/web/css/flex-flow/index.md index 4c77d70ed0..5e34ae19aa 100644 --- a/files/ja/web/css/flex-flow/index.md +++ b/files/ja/web/css/flex-flow/index.md @@ -5,32 +5,39 @@ tags: - CSS - CSS フレックスボックス - CSS プロパティ - - Reference - - 一括指定プロパティ + - リファレンス + - recipe:css-shorthand-property +browser-compat: css.properties.flex-flow translation_of: Web/CSS/flex-flow --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/Web/CSS">CSS</a> の <strong><code>flex-flow</code></strong> プロパティは、 {{cssxref("flex-direction")}} プロパティと {{cssxref("flex-wrap")}} プロパティの<a href="/ja/docs/Web/CSS/Shorthand_properties">一括指定</a>プロパティです。</p> +**`flex-flow`** は [CSS](/ja/docs/Web/CSS) の[一括指定プロパティ](/ja/docs/Web/CSS/Shorthand_properties)で、フレックスコンテナーの向きと折り返しの動作を同時に指定します。 -<div>{{EmbedInteractiveExample("pages/css/flex-flow.html")}}</div> +{{EmbedInteractiveExample("pages/css/flex-flow.html")}} -<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> +## 構成要素のプロパティ -<h2 id="Syntax" name="Syntax">構文</h2> +このプロパティは以下の CSS プロパティの一括指定です。 -<pre class="brush:css no-line-numbers">/* flex-flow: <'flex-direction'> */ +- [`flex-direction`](/ja/docs/Web/CSS/flex-direction) +- [`flex-wrap`](/ja/docs/Web/CSS/flex-wrap) + +## 構文 + +```css +/* flex-flow: <'flex-direction'> */ flex-flow: row; flex-flow: row-reverse; flex-flow: column; flex-flow: column-reverse; -/* flex-flow: <'flex-wrap'> */ +/* flex-flow: <'flex-wrap'> */ flex-flow: nowrap; flex-flow: wrap; flex-flow: wrap-reverse; -/* flex-flow: <'flex-direction'> および <'flex-wrap'> */ +/* flex-flow: <'flex-direction'> および <'flex-wrap'> */ flex-flow: row nowrap; flex-flow: column wrap; flex-flow: column-reverse wrap-reverse; @@ -38,53 +45,42 @@ flex-flow: column-reverse wrap-reverse; /* グローバル値 */ flex-flow: inherit; flex-flow: initial; +flex-flow: revert; flex-flow: unset; -</pre> +``` + +### 値 -<h3 id="Values" name="Values">値</h3> +値に関して詳しくは、 {{cssxref("flex-direction")}} および {{cssxref("flex-wrap")}} をご覧ください。 -<p>値に関して詳しくは、 {{cssxref("flex-direction")}} および {{cssxref("flex-wrap")}} をご覧ください。</p> +## 公式定義 -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +{{cssinfo}} + +## 形式文法 {{csssyntax}} -<h2 id="Examples" name="Examples">例</h2> +## 例 + +### column-reverse と wrap の設定 -<pre class="brush:css;highlight:3">element { +```css +element { /* main-axis は block 方向で、 main-start と main-end を逆にします。フレックスアイテムは複数行にレイアウトされます */ flex-flow: column-reverse wrap; } -</pre> - -<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('CSS3 Flexbox','#flex-flow-property','flex-flow') }}</td> - <td>{{ Spec2('CSS3 Flexbox') }}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> - -<p>{{cssinfo}}</p> - -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> - -<p>{{Compat("css.properties.flex-flow")}}</p> - -<h2 id="See_also" name="See_also">関連情報</h2> - -<ul> - <li>CSS フレックスボックスガイド: <em><a href="/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox">フレックスボックスの基本概念</a></em></li> - <li>CSS フレックスボックスガイド: <em><a href="/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Ordering_Flex_Items">フレックスアイテムの順序</a></em></li> -</ul> +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- CSS フレックスボックスガイド: _[フレックスボックスの基本概念](/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox)_ +- CSS フレックスボックスガイド: _[フレックスアイテムの順序](/ja/docs/Web/CSS/CSS_Flexible_Box_Layout/Ordering_Flex_Items)_ |