From 73acdb88ef1489ee33243b92a7dab6f3b8890a52 Mon Sep 17 00:00:00 2001 From: Rei Tsukada Date: Sun, 12 Jul 2026 10:50:48 +0900 Subject: [PATCH] fix mismatch code and text --- docs/2-browser-apps/05-css-layout/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2-browser-apps/05-css-layout/index.mdx b/docs/2-browser-apps/05-css-layout/index.mdx index 991804369..ae6728406 100644 --- a/docs/2-browser-apps/05-css-layout/index.mdx +++ b/docs/2-browser-apps/05-css-layout/index.mdx @@ -427,7 +427,7 @@ HTML要素は、それらが表示される際のデフォルトの振る舞い } ``` -`条件`の部分には、例えば「画面幅が800px以下の場合」としたいならば`max-width: 800px`のように指定します。 +`条件`の部分には、例えば「画面幅が1024px以下の場合」としたいならば`max-width: 1024px`のように指定します。 メディアクエリを使って、画面幅が一定より小さい場合に`flex-direction`プロパティの値が`column`となるようにすることで、カードを縦並びにすることができます。