diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/flex_item/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/glossary/flex_item/index.html')
-rw-r--r-- | files/ja/glossary/flex_item/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/files/ja/glossary/flex_item/index.html b/files/ja/glossary/flex_item/index.html new file mode 100644 index 0000000000..7f2bd9dccd --- /dev/null +++ b/files/ja/glossary/flex_item/index.html @@ -0,0 +1,35 @@ +--- +title: Flex アイテム +slug: Glossary/Flex_Item +tags: + - CSS + - Glossary + - flex item + - flexbox +translation_of: Glossary/Flex_Item +--- +<p>{{glossary("Flex Container")}} (<code>display: flex</code> または <code>display: inline-flex</code> が設定された要素) の直下の子要素が<strong>「flex アイテム」</strong>となります。</p> + +<p>Flex コンテナ内で直下に続くテキストも flex アイテムになります。</p> + +<h2 id="関連項目">関連項目</h2> + +<h3 id="プロパティリファレンス">プロパティリファレンス</h3> + +<div class="index"> +<ul> + <li>{{cssxref("align-self")}}</li> + <li>{{cssxref("flex-basis")}}</li> + <li>{{cssxref("flex-grow")}}</li> + <li>{{cssxref("flex-shrink")}}</li> + <li>{{cssxref("order")}}</li> +</ul> +</div> + +<h3 id="参考文献">参考文献</h3> + +<ul> + <li>CSS Flexbox Guide: <em><a href="/docs/Web/CSS/CSS_Flexible_Box_Layout/Basic_Concepts_of_Flexbox">Basic Concepts of Flexbox</a></em></li> + <li>CSS Flexbox Guide: <em><a href="/docs/Web/CSS/CSS_Flexible_Box_Layout/Ordering_Flex_Items">Ordering flex items</a></em></li> + <li>CSS Flexbox Guide: <em><a href="/docs/Web/CSS/CSS_Flexible_Box_Layout/Controlling_Ratios_of_Flex_Items_Along_the_Main_Ax">Controlling Ratios of flex items along the main axis</a></em></li> +</ul> |