質問編集履歴

1

CSS追加忘れ

2019/07/28 04:06

投稿

soso0programmer
soso0programmer

スコア35

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,120 @@
122
122
 
123
123
  コード
124
124
 
125
+ /* ここからlink */
126
+
127
+
128
+
129
+ .link {
130
+
131
+
132
+
133
+ width: 100%;
134
+
135
+ height: 87px;
136
+
137
+ background-color: blue;
138
+
139
+ position: relative;
140
+
141
+ }
142
+
143
+
144
+
145
+ .link-container {
146
+
147
+ width: 100%
148
+
149
+ height: 27px;
150
+
151
+ background-color: red;
152
+
153
+ position: absolute;
154
+
155
+ top: 50%;
156
+
157
+ left: 50%;
158
+
159
+ transform: translate(-50%, -50%);
160
+
161
+ }
162
+
163
+
164
+
165
+ .links {
166
+
167
+ display: flex;
168
+
169
+ justify-content: center;
170
+
171
+ }
172
+
173
+
174
+
175
+ .links li {
176
+
177
+ font-size: 14px;
178
+
179
+ margin: 0 20px;
180
+
181
+ color: white;
182
+
183
+ }
184
+
185
+
186
+
187
+ /* ここからfooter */
188
+
189
+ footer {
190
+
191
+ width: 100%;
192
+
193
+ height: 159px;
194
+
195
+ background-color: purple;
196
+
197
+ }
198
+
199
+
200
+
201
+ .footer-container {
202
+
203
+ height: 89px;
204
+
205
+ background-color: lightBlue;
206
+
207
+ display: flex;
208
+
209
+ justify-content: center;
210
+
211
+ margin-top: 35px;
212
+
213
+ margin-bottom: 35px;
214
+
215
+ }
216
+
217
+
218
+
219
+ .footer-logo img {
220
+
221
+ width: 90px;
222
+
223
+ height: 89px;
224
+
225
+ }
226
+
227
+
228
+
229
+ .footer-copyRight {
230
+
231
+ font-size: 10px;
232
+
233
+ color: white;
234
+
235
+
236
+
237
+ }
238
+
125
239
 
126
240
 
127
241
  ```