質問編集履歴
2
変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -406,8 +406,6 @@
|
|
406
406
|
|
407
407
|
### 試したこと
|
408
408
|
|
409
|
-
### ここに問題に対して試したことを記載してください。
|
410
|
-
|
411
409
|
キャッシュを何回消しても表示されませんでした。
|
412
410
|
|
413
411
|
Google Chromeの検証機能で見てみてもHTMLタグもCSSもありました。
|
1
変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,338 +76,336 @@
|
|
76
76
|
|
77
77
|
</header>
|
78
78
|
|
79
|
+
</body>
|
80
|
+
|
81
|
+
</html>
|
82
|
+
|
79
83
|
```
|
80
84
|
|
85
|
+
|
86
|
+
|
87
|
+
CSS
|
88
|
+
|
89
|
+
```ここに言語を入力
|
90
|
+
|
91
|
+
* {
|
92
|
+
|
93
|
+
margin:0;
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
input {
|
100
|
+
|
101
|
+
display:none;
|
102
|
+
|
103
|
+
}
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
menu {
|
108
|
+
|
109
|
+
margin:0;
|
110
|
+
|
111
|
+
padding:0;
|
112
|
+
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
ul {
|
118
|
+
|
119
|
+
padding: 0;
|
120
|
+
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
menu a:hover {
|
126
|
+
|
127
|
+
opacity:0.4;
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
.menulist {
|
134
|
+
|
135
|
+
font-size:150%;
|
136
|
+
|
137
|
+
margin-left:2%;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
.menulistright {
|
144
|
+
|
145
|
+
font-size:150%;
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
.menulistweight {
|
152
|
+
|
153
|
+
font-weight:700;
|
154
|
+
|
155
|
+
}
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
.menulistright a {
|
160
|
+
|
161
|
+
color:#fff;
|
162
|
+
|
163
|
+
display:block;
|
164
|
+
|
165
|
+
width:100%;
|
166
|
+
|
167
|
+
}
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
.menulist a {
|
172
|
+
|
173
|
+
color:#fff;
|
174
|
+
|
175
|
+
display:block;
|
176
|
+
|
177
|
+
width:100%;
|
178
|
+
|
179
|
+
}
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
a {
|
184
|
+
|
185
|
+
text-decoration:none;
|
186
|
+
|
187
|
+
}
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
body {
|
194
|
+
|
195
|
+
background-image: url(../twentyseventeen-child/img/bg.png);
|
196
|
+
|
197
|
+
width: 100%;
|
198
|
+
|
199
|
+
height: 100vh;
|
200
|
+
|
201
|
+
background-repeat: no-repeat;
|
202
|
+
|
203
|
+
background-size: cover;
|
204
|
+
|
205
|
+
background-attachment: fixed;
|
206
|
+
|
207
|
+
background-position: center center;
|
208
|
+
|
209
|
+
}
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
@media screen and (min-width:769px){
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
.mainmenu {
|
218
|
+
|
219
|
+
background: #4cade0;
|
220
|
+
|
221
|
+
border-bottom: 1px solid #fff;
|
222
|
+
|
223
|
+
padding:2%;
|
224
|
+
|
225
|
+
}
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
menu ul {
|
230
|
+
|
231
|
+
display: flex;
|
232
|
+
|
233
|
+
}
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
li {
|
238
|
+
|
239
|
+
list-style:none;
|
240
|
+
|
241
|
+
}
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
}
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
@media screen and (max-width:768px) {
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
#drawer {
|
254
|
+
|
255
|
+
position: relative;
|
256
|
+
|
257
|
+
background: #4cade0;
|
258
|
+
|
259
|
+
padding: 1%;
|
260
|
+
|
261
|
+
height:33px;
|
262
|
+
|
263
|
+
margin: 0 0 0 auto;
|
264
|
+
|
265
|
+
border-radius: 50%;
|
266
|
+
|
267
|
+
padding-top:5%;
|
268
|
+
|
269
|
+
padding-bottom:5%;
|
270
|
+
|
271
|
+
}
|
272
|
+
|
273
|
+
|
274
|
+
|
275
|
+
.menuinput {
|
276
|
+
|
277
|
+
transform: scale(3,3);
|
278
|
+
|
279
|
+
}
|
280
|
+
|
281
|
+
|
282
|
+
|
283
|
+
#open {
|
284
|
+
|
285
|
+
display: inline-block;
|
286
|
+
|
287
|
+
width: 30px;
|
288
|
+
|
289
|
+
height: 22px;
|
290
|
+
|
291
|
+
vertical-align: middle;
|
292
|
+
|
293
|
+
cursor: pointer;
|
294
|
+
|
295
|
+
|
296
|
+
|
297
|
+
}
|
298
|
+
|
299
|
+
#open span, #open span::before, #open span::after {
|
300
|
+
|
301
|
+
position: absolute;
|
302
|
+
|
303
|
+
height: 3px;
|
304
|
+
|
305
|
+
width: 25px;
|
306
|
+
|
307
|
+
border-radius: 3px;
|
308
|
+
|
309
|
+
background: white;
|
310
|
+
|
311
|
+
display: block;
|
312
|
+
|
81
|
-
|
313
|
+
content: "";
|
314
|
+
|
315
|
+
|
316
|
+
|
82
|
-
|
317
|
+
}
|
318
|
+
|
319
|
+
#open span::before {
|
320
|
+
|
321
|
+
bottom: -8px;
|
322
|
+
|
323
|
+
}
|
324
|
+
|
325
|
+
#open span::after {
|
326
|
+
|
327
|
+
bottom: -16px;
|
328
|
+
|
329
|
+
}
|
330
|
+
|
331
|
+
#close {
|
332
|
+
|
333
|
+
display: none;
|
334
|
+
|
335
|
+
position: fixed;
|
336
|
+
|
337
|
+
z-index: 99;
|
338
|
+
|
339
|
+
top: 0;
|
340
|
+
|
341
|
+
left: 0;
|
342
|
+
|
343
|
+
width: 100%;
|
344
|
+
|
345
|
+
height: 100%;
|
346
|
+
|
347
|
+
background: #4cade0;
|
348
|
+
|
349
|
+
opacity: 0;
|
350
|
+
|
351
|
+
transition: .3s ease-in-out;
|
352
|
+
|
353
|
+
}
|
354
|
+
|
355
|
+
#menu-content {
|
356
|
+
|
357
|
+
overflow: auto;
|
358
|
+
|
359
|
+
position: fixed;
|
360
|
+
|
361
|
+
top: 0;
|
362
|
+
|
363
|
+
left: 0;
|
364
|
+
|
365
|
+
z-index: 9999;
|
366
|
+
|
367
|
+
width: 90%;
|
368
|
+
|
369
|
+
max-width: 270px;
|
370
|
+
|
371
|
+
height: 100%;
|
372
|
+
|
373
|
+
background: #4cade0;
|
374
|
+
|
375
|
+
transition: .3s ease-in-out;
|
376
|
+
|
377
|
+
transform: translateX(-105%);
|
378
|
+
|
379
|
+
}
|
380
|
+
|
381
|
+
#input:checked ~ #close {
|
382
|
+
|
83
|
-
|
383
|
+
display: block;
|
384
|
+
|
84
|
-
|
385
|
+
opacity: .5;
|
386
|
+
|
85
|
-
|
387
|
+
}
|
388
|
+
|
389
|
+
#input:checked ~ #menu-content {
|
390
|
+
|
391
|
+
transform: translateX(0%);
|
392
|
+
|
393
|
+
box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
}
|
398
|
+
|
399
|
+
|
400
|
+
|
401
|
+
}
|
402
|
+
|
403
|
+
|
404
|
+
|
405
|
+
```
|
86
406
|
|
87
407
|
### 試したこと
|
88
408
|
|
89
|
-
CSS
|
90
|
-
|
91
|
-
```ここに言語を入力
|
92
|
-
|
93
|
-
* {
|
94
|
-
|
95
|
-
margin:0;
|
96
|
-
|
97
|
-
}
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
input {
|
102
|
-
|
103
|
-
display:none;
|
104
|
-
|
105
|
-
}
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
menu {
|
110
|
-
|
111
|
-
margin:0;
|
112
|
-
|
113
|
-
padding:0;
|
114
|
-
|
115
|
-
}
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
ul {
|
120
|
-
|
121
|
-
padding: 0;
|
122
|
-
|
123
|
-
}
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
menu a:hover {
|
128
|
-
|
129
|
-
opacity:0.4;
|
130
|
-
|
131
|
-
}
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
.menulist {
|
136
|
-
|
137
|
-
font-size:150%;
|
138
|
-
|
139
|
-
margin-left:2%;
|
140
|
-
|
141
|
-
}
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
.menulistright {
|
146
|
-
|
147
|
-
font-size:150%;
|
148
|
-
|
149
|
-
}
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
.menulistweight {
|
154
|
-
|
155
|
-
font-weight:700;
|
156
|
-
|
157
|
-
}
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
.menulistright a {
|
162
|
-
|
163
|
-
color:#fff;
|
164
|
-
|
165
|
-
display:block;
|
166
|
-
|
167
|
-
width:100%;
|
168
|
-
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
.menulist a {
|
174
|
-
|
175
|
-
color:#fff;
|
176
|
-
|
177
|
-
display:block;
|
178
|
-
|
179
|
-
width:100%;
|
180
|
-
|
181
|
-
}
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
a {
|
186
|
-
|
187
|
-
text-decoration:none;
|
188
|
-
|
189
|
-
}
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
body {
|
196
|
-
|
197
|
-
background-image: url(../twentyseventeen-child/img/bg.png);
|
198
|
-
|
199
|
-
width: 100%;
|
200
|
-
|
201
|
-
height: 100vh;
|
202
|
-
|
203
|
-
background-repeat: no-repeat;
|
204
|
-
|
205
|
-
background-size: cover;
|
206
|
-
|
207
|
-
background-attachment: fixed;
|
208
|
-
|
209
|
-
background-position: center center;
|
210
|
-
|
211
|
-
}
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
@media screen and (min-width:769px){
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
.mainmenu {
|
220
|
-
|
221
|
-
background: #4cade0;
|
222
|
-
|
223
|
-
border-bottom: 1px solid #fff;
|
224
|
-
|
225
|
-
padding:2%;
|
226
|
-
|
227
|
-
}
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
menu ul {
|
232
|
-
|
233
|
-
display: flex;
|
234
|
-
|
235
|
-
}
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
li {
|
240
|
-
|
241
|
-
list-style:none;
|
242
|
-
|
243
|
-
}
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
}
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
@media screen and (max-width:768px) {
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
#drawer {
|
256
|
-
|
257
|
-
position: relative;
|
258
|
-
|
259
|
-
background: #4cade0;
|
260
|
-
|
261
|
-
padding: 1%;
|
262
|
-
|
263
|
-
height:33px;
|
264
|
-
|
265
|
-
margin: 0 0 0 auto;
|
266
|
-
|
267
|
-
border-radius: 50%;
|
268
|
-
|
269
|
-
padding-top:5%;
|
270
|
-
|
271
|
-
padding-bottom:5%;
|
272
|
-
|
273
|
-
}
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
.menuinput {
|
278
|
-
|
279
|
-
transform: scale(3,3);
|
280
|
-
|
281
|
-
}
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
#open {
|
286
|
-
|
287
|
-
display: inline-block;
|
288
|
-
|
289
|
-
width: 30px;
|
290
|
-
|
291
|
-
height: 22px;
|
292
|
-
|
293
|
-
vertical-align: middle;
|
294
|
-
|
295
|
-
cursor: pointer;
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
}
|
300
|
-
|
301
|
-
#open span, #open span::before, #open span::after {
|
302
|
-
|
303
|
-
position: absolute;
|
304
|
-
|
305
|
-
height: 3px;
|
306
|
-
|
307
|
-
width: 25px;
|
308
|
-
|
309
|
-
border-radius: 3px;
|
310
|
-
|
311
|
-
background: white;
|
312
|
-
|
313
|
-
display: block;
|
314
|
-
|
315
|
-
content: "";
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
}
|
320
|
-
|
321
|
-
#open span::before {
|
322
|
-
|
323
|
-
bottom: -8px;
|
324
|
-
|
325
|
-
}
|
326
|
-
|
327
|
-
#open span::after {
|
328
|
-
|
329
|
-
bottom: -16px;
|
330
|
-
|
331
|
-
}
|
332
|
-
|
333
|
-
#close {
|
334
|
-
|
335
|
-
display: none;
|
336
|
-
|
337
|
-
position: fixed;
|
338
|
-
|
339
|
-
z-index: 99;
|
340
|
-
|
341
|
-
top: 0;
|
342
|
-
|
343
|
-
left: 0;
|
344
|
-
|
345
|
-
width: 100%;
|
346
|
-
|
347
|
-
height: 100%;
|
348
|
-
|
349
|
-
background: #4cade0;
|
350
|
-
|
351
|
-
opacity: 0;
|
352
|
-
|
353
|
-
transition: .3s ease-in-out;
|
354
|
-
|
355
|
-
}
|
356
|
-
|
357
|
-
#menu-content {
|
358
|
-
|
359
|
-
overflow: auto;
|
360
|
-
|
361
|
-
position: fixed;
|
362
|
-
|
363
|
-
top: 0;
|
364
|
-
|
365
|
-
left: 0;
|
366
|
-
|
367
|
-
z-index: 9999;
|
368
|
-
|
369
|
-
width: 90%;
|
370
|
-
|
371
|
-
max-width: 270px;
|
372
|
-
|
373
|
-
height: 100%;
|
374
|
-
|
375
|
-
background: #4cade0;
|
376
|
-
|
377
|
-
transition: .3s ease-in-out;
|
378
|
-
|
379
|
-
transform: translateX(-105%);
|
380
|
-
|
381
|
-
}
|
382
|
-
|
383
|
-
#input:checked ~ #close {
|
384
|
-
|
385
|
-
display: block;
|
386
|
-
|
387
|
-
opacity: .5;
|
388
|
-
|
389
|
-
}
|
390
|
-
|
391
|
-
#input:checked ~ #menu-content {
|
392
|
-
|
393
|
-
transform: translateX(0%);
|
394
|
-
|
395
|
-
box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
}
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
}
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
```
|
408
|
-
|
409
|
-
|
410
|
-
|
411
409
|
### ここに問題に対して試したことを記載してください。
|
412
410
|
|
413
411
|
キャッシュを何回消しても表示されませんでした。
|