回答編集履歴

1

ちょっと雑すぎたので追記

2020/03/14 01:19

投稿

Yorrie
Yorrie

スコア354

test CHANGED
@@ -5,6 +5,8 @@
5
5
 
6
6
 
7
7
  ```CSS
8
+
9
+ @media screen and (max-width: 479px) {
8
10
 
9
11
  .content {
10
12
 
@@ -14,4 +16,40 @@
14
16
 
15
17
  }
16
18
 
19
+ }
20
+
17
21
  ```
22
+
23
+
24
+
25
+ あ、あとfloatとかも解除したりコンテンツの幅とかも調整してあげてくださいね!はみ出ちゃうので!
26
+
27
+
28
+
29
+ ```CSS
30
+
31
+ @media screen and (max-width: 479px) {
32
+
33
+ .content {
34
+
35
+ display: flex;
36
+
37
+ flex-direction: column-reverse;
38
+
39
+ padding: 0 20px;
40
+
41
+ }
42
+
43
+ .left-box, .right-box {
44
+
45
+ float: none;
46
+
47
+ width: 100%;
48
+
49
+ margin: 0;
50
+
51
+ }
52
+
53
+ }
54
+
55
+ ```