回答編集履歴
3
冗長修正
answer
CHANGED
@@ -33,7 +33,6 @@
|
|
33
33
|
|
34
34
|
#right {
|
35
35
|
width: 25%;
|
36
|
-
float: right;
|
37
36
|
}
|
38
37
|
|
39
38
|
#main1, #main2, #footer, #side {
|
2
修正
answer
CHANGED
@@ -27,11 +27,6 @@
|
|
27
27
|
flex-wrap: wrap;
|
28
28
|
}
|
29
29
|
|
30
|
-
#left,#right {
|
31
|
-
width: auto;
|
32
|
-
}
|
33
|
-
|
34
|
-
|
35
30
|
#left {
|
36
31
|
width: 75%;
|
37
32
|
}
|
1
スマホも。
answer
CHANGED
@@ -65,4 +65,23 @@
|
|
65
65
|
margin-top: 0;
|
66
66
|
width: calc(75% - 24px);
|
67
67
|
}
|
68
|
+
|
69
|
+
|
70
|
+
/*スマホ!*/
|
71
|
+
@media screen and (max-width: 599px) {
|
72
|
+
#wrapper {
|
73
|
+
width: auto;
|
74
|
+
}
|
75
|
+
|
76
|
+
#left,#right,#footer {
|
77
|
+
width: 100%;
|
78
|
+
}
|
79
|
+
|
80
|
+
/* ここ */
|
81
|
+
#side {
|
82
|
+
margin-top: 0;
|
83
|
+
height: 30px;
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
68
87
|
```
|