From 99efbc750cedc26c9e34089420ceef98c29fda81 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Wed, 24 Nov 2021 08:20:03 +0900 Subject: flex データ型のリファレンスを更新 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 2021/08/13 時点の英語版に同期 --- files/ja/web/css/flex_value/index.md | 76 ++++++++++++++++-------------------- 1 file changed, 34 insertions(+), 42 deletions(-) (limited to 'files/ja/web/css') diff --git a/files/ja/web/css/flex_value/index.md b/files/ja/web/css/flex_value/index.md index 642c6e441f..5bc83c5eab 100644 --- a/files/ja/web/css/flex_value/index.md +++ b/files/ja/web/css/flex_value/index.md @@ -3,55 +3,47 @@ title: slug: Web/CSS/flex_value tags: - CSS - - CSS Data Type - CSS データ型 - - Layout - - Reference - - Web - - ウェブ - - リファレンス + - データ型 - レイアウト + - リファレンス + - ウェブ translation_of: Web/CSS/flex_value --- -
{{CSSRef}}
+{{CSSRef}} -

CSS<flex> データ型 は、グリッドコンテナー内部における可変の長さです。 {{cssxref("grid-template-columns")}} や {{cssxref("grid-template-rows")}} 及びほかの関連プロパティで使われます。

+**``** は [CSS](/ja/docs/Web/CSS) の[データ型](/ja/docs/Web/CSS/CSS_Types)で、グリッドコンテナー内部における可変の長さを記述します。 {{cssxref("grid-template-columns")}} や {{cssxref("grid-template-rows")}} およびほかの関連プロパティで使われます。 -

構文

+## 構文 -

<flex> データ型は {{cssxref("<number>")}} のあとに単位 fr が付きます。すべての CSS dimensions と同様に、数値と単位の間に空白は入れません。

+`` データ型は {{cssxref("<number>")}} のあとに単位 `fr` が付きます。他の CSS の数量と同様に、数値と単位の間に空白は入れません。 -

+## 例 -
1fr    /* 整数値の使用 */
+### fr データ型の正しい値の例
+
+```css
+1fr    /* 整数値の使用 */
 2.5fr  /* 浮動小数点値の使用 */
-
- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName("CSS Grid", "#typedef-flex", "<flex>")}}{{Spec2("CSS Grid")}}初回定義
- -

ブラウザーの対応

- -

{{Compat("css.types.flex")}}

- -

関連情報

- - +``` + +### CSS グリッドレイアウトのトラックリストでの使用例 + +```css +.grid { + display: grid; +  grid-template-columns: 1fr 1fr 2.5fr 1.5fr; +} +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + + - [CSS グリッドレイアウト](/ja/docs/Web/CSS/CSS_Grid_Layout) -- cgit v1.2.3-54-g00ecf