質問編集履歴
1
コード再入力
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,6 +76,8 @@
|
|
76
76
|
|
77
77
|
|
78
78
|
|
79
|
+
|
80
|
+
|
79
81
|
```CSS
|
80
82
|
|
81
83
|
.company-greeting {
|
@@ -88,13 +90,13 @@
|
|
88
90
|
|
89
91
|
.company-greeting .contents{
|
90
92
|
|
91
|
-
|
93
|
+
display: grid;
|
92
94
|
|
93
|
-
|
95
|
+
grid-template-columns: 1fr 1fr;
|
94
96
|
|
95
|
-
|
97
|
+
grid-gap: 20px;
|
96
98
|
|
97
|
-
|
99
|
+
justify-content: center;
|
98
100
|
|
99
101
|
}
|
100
102
|
|
@@ -102,6 +104,8 @@
|
|
102
104
|
|
103
105
|
.company-greeting h2{
|
104
106
|
|
105
|
-
|
107
|
+
margin-bottom: 50px;
|
106
108
|
|
107
|
-
|
109
|
+
text-align: center;
|
110
|
+
|
111
|
+
```
|