回答編集履歴
3
flex使わずシンプルに
answer
CHANGED
@@ -11,15 +11,8 @@
|
|
11
11
|
left: 0;
|
12
12
|
width: 100%;
|
13
13
|
height: 100%;
|
14
|
-
margin: 0;
|
14
|
+
margin: 50px 0 0;
|
15
|
-
display: -webkit-flex;
|
16
|
-
display: flex;
|
17
|
-
justify-content: center;
|
18
|
-
align-items: center;
|
19
15
|
text-align: center;
|
20
|
-
/* ↓追加分 */
|
21
|
-
padding-top: 50px;
|
22
|
-
-webkit-box-sizing: border-box;
|
23
|
-
box-sizing: border-box;
|
24
16
|
}
|
17
|
+
|
25
18
|
```
|
2
修正
answer
CHANGED
@@ -17,5 +17,9 @@
|
|
17
17
|
justify-content: center;
|
18
18
|
align-items: center;
|
19
19
|
text-align: center;
|
20
|
+
/* ↓追加分 */
|
21
|
+
padding-top: 50px;
|
22
|
+
-webkit-box-sizing: border-box;
|
23
|
+
box-sizing: border-box;
|
20
24
|
}
|
21
25
|
```
|
1
text-align: center;追加
answer
CHANGED
@@ -16,5 +16,6 @@
|
|
16
16
|
display: flex;
|
17
17
|
justify-content: center;
|
18
18
|
align-items: center;
|
19
|
+
text-align: center;
|
19
20
|
}
|
20
21
|
```
|