回答編集履歴

1

スマホ表示時のことを追記しました

2021/03/25 00:40

投稿

mai1210
mai1210

スコア272

test CHANGED
@@ -37,3 +37,27 @@
37
37
 
38
38
 
39
39
  [https://developer.mozilla.org/ja/docs/Web/CSS/flex-direction](https://developer.mozilla.org/ja/docs/Web/CSS/flex-direction)
40
+
41
+
42
+
43
+
44
+
45
+ 逆に`flex-direction: column;`をかけると縦並びになるので、画面幅が狭い時に縦並びにしたい場合は、`.container-two`と`.hosting-chapter`に`flex-direction: column;`をかけてください。
46
+
47
+ ※HTMLの構成が変わっていない前提です。
48
+
49
+
50
+
51
+ ```CSS
52
+
53
+ @media screen and (max-width: 744px) {
54
+
55
+ .container-two, .hosting-chapter {
56
+
57
+ flex-direction: column;
58
+
59
+ }
60
+
61
+ }
62
+
63
+ ```