質問編集履歴

2

htmlコードの追加

2019/12/18 04:59

投稿

reo_fukkase
reo_fukkase

スコア50

test CHANGED
File without changes
test CHANGED
@@ -1,411 +1,567 @@
1
- ```ここに言語を入力
1
+ ```HTML
2
+
3
+ <!DOCTYPE html>
4
+
5
+ <html>
6
+
7
+ <head>
8
+
9
+ <meta charset="utf-8">
10
+
11
+ <title>Progate</title>
12
+
13
+ <link rel="stylesheet" href="stylesheet.css">
14
+
15
+ </head>
16
+
17
+ <body>
18
+
19
+ <!-- ここからHTMLを書き始めてください -->
20
+
21
+ <header>
22
+
23
+ <div class="container">
24
+
25
+ <div class="header-left">
26
+
27
+ Progate
28
+
29
+ </div>
30
+
31
+ <div class="header-right">
32
+
33
+ <ul>
34
+
35
+ <li>プログラミングとは</li>
36
+
37
+ <li>学べるレッスン</li>
38
+
39
+ <li>お問い合わせ</li>
40
+
41
+ </ul>
42
+
43
+ </div>
44
+
45
+ </div>
46
+
47
+ </header>
48
+
49
+ <div class="wrapper-title">
50
+
51
+ <div class="container">
52
+
53
+ <h1>HELLO WORLD<span>.</span></h1>
54
+
55
+ <h2>プログラミングの世界へようこそ</h2>
56
+
57
+ </div>
58
+
59
+ </div>
60
+
61
+ <div class="wrapper-lesson">
62
+
63
+ <div class="container">
64
+
65
+ <div class="lesson-title">
66
+
67
+ <h2>学べるレッスン</h2>
68
+
69
+ </div>
70
+
71
+ <div class="lessons">
72
+
73
+ <div class="lesson-card">
74
+
75
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/html.svg
76
+
77
+ ">
78
+
79
+ <p>HTML & CSS</p>
80
+
81
+ </div>
82
+
83
+ <div class="lesson-card">
84
+
85
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/php.svg">
86
+
87
+ <p>PHP</p>
88
+
89
+ </div>
90
+
91
+ <div class="lesson-card">
92
+
93
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/ruby.svg">
94
+
95
+ <p>Ruby</p>
96
+
97
+ </div>
98
+
99
+ <div class="lesson-card">
100
+
101
+ <img src="https://s3-ap-northeast-1.amazonaws.com/progate/shared/images/lesson/html/study/swift.svg">
102
+
103
+ <p>Swift</p>
104
+
105
+ </div>
106
+
107
+ </div>
108
+
109
+ </div>
110
+
111
+ <div class="clear">
112
+
113
+ </div>
114
+
115
+ </div>
116
+
117
+ <div class="wrapper-contact">
118
+
119
+ <div class="container">
120
+
121
+ <div class="contact-title">
122
+
123
+ <h2>お問い合わせ</h2>
124
+
125
+ </div>
126
+
127
+ <div class="contact-form">
128
+
129
+ <p>メールアドレス(必須)</p>
130
+
131
+ <input type="text/submit/hidden/button/image">
132
+
133
+ <p>お問い合わせ内容(必須)</p>
134
+
135
+ <textarea></textarea>
136
+
137
+ <p>※必須項目は必ずご入力ください</p>
138
+
139
+ <input class="button" type="submit">
140
+
141
+ </div>
142
+
143
+ </div>
144
+
145
+ </div>
146
+
147
+ <footer>
148
+
149
+
150
+
151
+ </footer>
152
+
153
+ </body>
154
+
155
+ </html>
156
+
157
+ ```
158
+
159
+ ```css
160
+
161
+ <変更前>
162
+
163
+ html, body,
164
+
165
+ ul, ol, li,
166
+
167
+ h1, h2, h3, h4, h5, h6, p,
168
+
169
+ form, input, div {
170
+
171
+ margin: 0;
172
+
173
+ padding: 0;
174
+
175
+ }
176
+
177
+
178
+
179
+ body {
180
+
181
+ font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
182
+
183
+ }
184
+
185
+
186
+
187
+ li {
188
+
189
+ list-style: none;
190
+
191
+ }
192
+
193
+
194
+
195
+ /* ここからCSSを記述してください */
196
+
197
+ header{
198
+
199
+ background-color:#26d0c9;
200
+
201
+ height:90px;
202
+
203
+ color:#fff;
204
+
205
+ }
206
+
207
+ .header-left{
208
+
209
+ float:left;
210
+
211
+ font-size:36px;
212
+
213
+ padding:20px 40px;
214
+
215
+ }
216
+
217
+ .header-right li{
218
+
219
+ float:left;
220
+
221
+ padding:33px 20px;
222
+
223
+ font-size:16px;
224
+
225
+ }
226
+
227
+ .wrapper-title{
228
+
229
+ padding-top:98px;
230
+
231
+ padding-bottom:100px;
232
+
233
+ }
234
+
235
+ .wrapper-title h1{
236
+
237
+ font-size:140px;
238
+
239
+ padding-left:80px;
240
+
241
+ }
242
+
243
+ span{
244
+
245
+ color:red;
246
+
247
+ }
248
+
249
+ .wrapper-title h2{
250
+
251
+ font-size:60px;
252
+
253
+ padding-left:80px;
254
+
255
+ }
256
+
257
+ .lesson-title{
258
+
259
+ font-size:19px;
260
+
261
+ border-bottom:2px solid #dee7ec;
262
+
263
+ margin:0 80px 1px 80px;
264
+
265
+ padding-bottom:15px;
266
+
267
+ }
268
+
269
+ .lessons{
270
+
271
+ padding:50px 60px;
272
+
273
+ }
274
+
275
+ .lesson-card{
276
+
277
+ float:left;
278
+
279
+ padding:0 20px;
280
+
281
+ }
282
+
283
+ .lesson-card p{
284
+
285
+ font-size:24px;
286
+
287
+ margin-top:30px;
288
+
289
+ }
290
+
291
+ .clear{
292
+
293
+ clear:both;
294
+
295
+ }
296
+
297
+ .contact-title{
298
+
299
+ padding:138px 80px 50px;
300
+
301
+ }
302
+
303
+ .contact-title h2{
304
+
305
+ font-size:28px;
306
+
307
+ border-bottom:2px solid #dee7ec;
308
+
309
+ padding-bottom:15px;
310
+
311
+ }
312
+
313
+ .contact-form{
314
+
315
+ padding:0 80px 100px 80px;
316
+
317
+ }
318
+
319
+ .contact-form input,textarea{
320
+
321
+ margin-top:10px;
322
+
323
+ margin-bottom:30px;
324
+
325
+ border:1px solid #dee7ec;
326
+
327
+ font-size:18px;
328
+
329
+ }
330
+
331
+ input{
332
+
333
+ height:63px;
334
+
335
+ width:400px;
336
+
337
+ padding:0 20px;
338
+
339
+ }
340
+
341
+ textarea{
342
+
343
+ width:400px;
344
+
345
+ padding:20px;
346
+
347
+ }
348
+
349
+ .button{
350
+
351
+ background-color:#dee7ec;
352
+
353
+ color:#889eab;
354
+
355
+ font-size:18px;
356
+
357
+ }
358
+
359
+ ```
360
+
361
+ ```css
362
+
363
+ 変更後
364
+
365
+ html, body,
366
+
367
+ ul, ol, li,
368
+
369
+ h1, h2, h3, h4, h5, h6, p,
370
+
371
+ form, input, div {
372
+
373
+ margin: 0;
374
+
375
+ padding: 0;
376
+
377
+ }
378
+
379
+
380
+
381
+ body {
382
+
383
+ font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
384
+
385
+ }
386
+
387
+
388
+
389
+ li {
390
+
391
+ list-style: none;
392
+
393
+ }
394
+
395
+ /* ここからCSSを記述してください */
396
+
397
+ header{
398
+
399
+ background-color:#26d0c9;
400
+
401
+ height:90px;
402
+
403
+ color:#fff;
404
+
405
+ }
406
+
407
+ .header-left{
408
+
409
+ float:left;
410
+
411
+ font-size:36px;
412
+
413
+ padding:20px 40px;
414
+
415
+ }
416
+
417
+ .header-right li{
418
+
419
+ float:left;
420
+
421
+ padding:33px 20px;
422
+
423
+ font-size:16px;
424
+
425
+ }
426
+
427
+ .wrapper-title{
428
+
429
+ padding-top:98px;
430
+
431
+ padding-bottom:100px;
432
+
433
+ }
434
+
435
+ .wrapper-title h1{
436
+
437
+ font-size:140px;
438
+
439
+ padding-left:80px;
440
+
441
+ }
442
+
443
+ span{
444
+
445
+ color:red;
446
+
447
+ }
448
+
449
+ .wrapper-title h2{
450
+
451
+ font-size:60px;
452
+
453
+ padding-left:80px;
454
+
455
+ }
456
+
457
+ .lesson-title{
458
+
459
+ font-size:19px;
460
+
461
+ border-bottom:2px solid #dee7ec;
462
+
463
+ margin:0 80px 1px 80px;
464
+
465
+ padding-bottom:15px;
466
+
467
+ }
468
+
469
+ .lessons{
470
+
471
+ padding:50px 60px;
472
+
473
+ }
474
+
475
+ .lesson-card{
476
+
477
+ float:left;
478
+
479
+ padding:0 20px;
480
+
481
+ }
482
+
483
+ .lesson-card p{
484
+
485
+ font-size:24px;
486
+
487
+ margin-top:30px;
488
+
489
+ }
490
+
491
+ .clear{
492
+
493
+ clear:both;
494
+
495
+ }
496
+
497
+ .contact-title{
498
+
499
+ padding:138px 80px 50px;
500
+
501
+ }
502
+
503
+ .contact-title h2{
504
+
505
+ font-size:28px;
506
+
507
+ border-bottom:2px solid #dee7ec;
508
+
509
+ padding-bottom:15px;
510
+
511
+ }
512
+
513
+ .contact-form{
514
+
515
+ padding:0 80px 100px 80px;
516
+
517
+ }
518
+
519
+ .contact-form input,textarea{
520
+
521
+ margin-top:10px;
522
+
523
+ margin-bottom:30px;
524
+
525
+ border:1px solid #dee7ec;
526
+
527
+ font-size:18px;
528
+
529
+ }
530
+
531
+ input{
532
+
533
+ height:63px;
534
+
535
+ width:400px;
536
+
537
+ padding:0 20px;
538
+
539
+ }
540
+
541
+ textarea{
542
+
543
+ height:85px;
544
+
545
+ width:400px;
546
+
547
+ padding:20px;
548
+
549
+ }
550
+
551
+ .button{
552
+
553
+ background-color:#dee7ec;
554
+
555
+ color:#889eab;
556
+
557
+ font-size:18px;
558
+
559
+ }
2
560
 
3
561
  コード
4
562
 
5
- <変更前>
6
-
7
- html, body,
8
-
9
- ul, ol, li,
10
-
11
- h1, h2, h3, h4, h5, h6, p,
12
-
13
- form, input, div {
14
-
15
- margin: 0;
16
-
17
- padding: 0;
18
-
19
- }
20
-
21
-
22
-
23
- body {
24
-
25
- font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
26
-
27
- }
28
-
29
-
30
-
31
- li {
32
-
33
- list-style: none;
34
-
35
- }
36
-
37
-
38
-
39
- /* ここからCSSを記述してください */
40
-
41
- header{
42
-
43
- background-color:#26d0c9;
44
-
45
- height:90px;
46
-
47
- color:#fff;
48
-
49
- }
50
-
51
- .header-left{
52
-
53
- float:left;
54
-
55
- font-size:36px;
56
-
57
- padding:20px 40px;
58
-
59
- }
60
-
61
- .header-right li{
62
-
63
- float:left;
64
-
65
- padding:33px 20px;
66
-
67
- font-size:16px;
68
-
69
- }
70
-
71
- .wrapper-title{
72
-
73
- padding-top:98px;
74
-
75
- padding-bottom:100px;
76
-
77
- }
78
-
79
- .wrapper-title h1{
80
-
81
- font-size:140px;
82
-
83
- padding-left:80px;
84
-
85
- }
86
-
87
- span{
88
-
89
- color:red;
90
-
91
- }
92
-
93
- .wrapper-title h2{
94
-
95
- font-size:60px;
96
-
97
- padding-left:80px;
98
-
99
- }
100
-
101
- .lesson-title{
102
-
103
- font-size:19px;
104
-
105
- border-bottom:2px solid #dee7ec;
106
-
107
- margin:0 80px 1px 80px;
108
-
109
- padding-bottom:15px;
110
-
111
- }
112
-
113
- .lessons{
114
-
115
- padding:50px 60px;
116
-
117
- }
118
-
119
- .lesson-card{
120
-
121
- float:left;
122
-
123
- padding:0 20px;
124
-
125
- }
126
-
127
- .lesson-card p{
128
-
129
- font-size:24px;
130
-
131
- margin-top:30px;
132
-
133
- }
134
-
135
- .clear{
136
-
137
- clear:both;
138
-
139
- }
140
-
141
- .contact-title{
142
-
143
- padding:138px 80px 50px;
144
-
145
- }
146
-
147
- .contact-title h2{
148
-
149
- font-size:28px;
150
-
151
- border-bottom:2px solid #dee7ec;
152
-
153
- padding-bottom:15px;
154
-
155
- }
156
-
157
- .contact-form{
158
-
159
- padding:0 80px 100px 80px;
160
-
161
- }
162
-
163
- .contact-form input,textarea{
164
-
165
- margin-top:10px;
166
-
167
- margin-bottom:30px;
168
-
169
- border:1px solid #dee7ec;
170
-
171
- font-size:18px;
172
-
173
- }
174
-
175
- input{
176
-
177
- height:63px;
178
-
179
- width:400px;
180
-
181
- padding:0 20px;
182
-
183
- }
184
-
185
- textarea{
186
-
187
- width:400px;
188
-
189
- padding:20px;
190
-
191
- }
192
-
193
- .button{
194
-
195
- background-color:#dee7ec;
196
-
197
- color:#889eab;
198
-
199
- font-size:18px;
200
-
201
- }
202
-
203
563
  ```
204
564
 
205
- ```
206
-
207
- 変更後
208
-
209
- html, body,
210
-
211
- ul, ol, li,
212
-
213
- h1, h2, h3, h4, h5, h6, p,
214
-
215
- form, input, div {
216
-
217
- margin: 0;
218
-
219
- padding: 0;
220
-
221
- }
222
-
223
-
224
-
225
- body {
226
-
227
- font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
228
-
229
- }
230
-
231
-
232
-
233
- li {
234
-
235
- list-style: none;
236
-
237
- }
238
-
239
- /* ここからCSSを記述してください */
240
-
241
- header{
242
-
243
- background-color:#26d0c9;
244
-
245
- height:90px;
246
-
247
- color:#fff;
248
-
249
- }
250
-
251
- .header-left{
252
-
253
- float:left;
254
-
255
- font-size:36px;
256
-
257
- padding:20px 40px;
258
-
259
- }
260
-
261
- .header-right li{
262
-
263
- float:left;
264
-
265
- padding:33px 20px;
266
-
267
- font-size:16px;
268
-
269
- }
270
-
271
- .wrapper-title{
272
-
273
- padding-top:98px;
274
-
275
- padding-bottom:100px;
276
-
277
- }
278
-
279
- .wrapper-title h1{
280
-
281
- font-size:140px;
282
-
283
- padding-left:80px;
284
-
285
- }
286
-
287
- span{
288
-
289
- color:red;
290
-
291
- }
292
-
293
- .wrapper-title h2{
294
-
295
- font-size:60px;
296
-
297
- padding-left:80px;
298
-
299
- }
300
-
301
- .lesson-title{
302
-
303
- font-size:19px;
304
-
305
- border-bottom:2px solid #dee7ec;
306
-
307
- margin:0 80px 1px 80px;
308
-
309
- padding-bottom:15px;
310
-
311
- }
312
-
313
- .lessons{
314
-
315
- padding:50px 60px;
316
-
317
- }
318
-
319
- .lesson-card{
320
-
321
- float:left;
322
-
323
- padding:0 20px;
324
-
325
- }
326
-
327
- .lesson-card p{
328
-
329
- font-size:24px;
330
-
331
- margin-top:30px;
332
-
333
- }
334
-
335
- .clear{
336
-
337
- clear:both;
338
-
339
- }
340
-
341
- .contact-title{
342
-
343
- padding:138px 80px 50px;
344
-
345
- }
346
-
347
- .contact-title h2{
348
-
349
- font-size:28px;
350
-
351
- border-bottom:2px solid #dee7ec;
352
-
353
- padding-bottom:15px;
354
-
355
- }
356
-
357
- .contact-form{
358
-
359
- padding:0 80px 100px 80px;
360
-
361
- }
362
-
363
- .contact-form input,textarea{
364
-
365
- margin-top:10px;
366
-
367
- margin-bottom:30px;
368
-
369
- border:1px solid #dee7ec;
370
-
371
- font-size:18px;
372
-
373
- }
374
-
375
- input{
376
-
377
- height:63px;
378
-
379
- width:400px;
380
-
381
- padding:0 20px;
382
-
383
- }
384
-
385
- textarea{
386
-
387
- height:85px;
388
-
389
- width:400px;
390
-
391
- padding:20px;
392
-
393
- }
394
-
395
- .button{
396
-
397
- background-color:#dee7ec;
398
-
399
- color:#889eab;
400
-
401
- font-size:18px;
402
-
403
- }
404
-
405
- コード
406
-
407
- ```
408
-
409
565
  ```現在はProgateの初級編道場をやっています。作業中のプレビュー画面では正しいはずですが、判定後の画面では見た目が違っていて、それが原因で(?)次へ進めません。原因分かる方アドバイスお願いします????‍♂️
410
566
 
411
567
  ![![イメージ説明](a55a464480d3cacb04ff88c5847d4402.png)]

1

コードの追加

2019/12/18 04:59

投稿

reo_fukkase
reo_fukkase

スコア50

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,412 @@
1
+ ```ここに言語を入力
2
+
3
+ コード
4
+
5
+ <変更前>
6
+
7
+ html, body,
8
+
9
+ ul, ol, li,
10
+
11
+ h1, h2, h3, h4, h5, h6, p,
12
+
13
+ form, input, div {
14
+
15
+ margin: 0;
16
+
17
+ padding: 0;
18
+
19
+ }
20
+
21
+
22
+
23
+ body {
24
+
25
+ font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
26
+
27
+ }
28
+
29
+
30
+
31
+ li {
32
+
33
+ list-style: none;
34
+
35
+ }
36
+
37
+
38
+
39
+ /* ここからCSSを記述してください */
40
+
41
+ header{
42
+
43
+ background-color:#26d0c9;
44
+
45
+ height:90px;
46
+
47
+ color:#fff;
48
+
49
+ }
50
+
51
+ .header-left{
52
+
53
+ float:left;
54
+
55
+ font-size:36px;
56
+
57
+ padding:20px 40px;
58
+
59
+ }
60
+
61
+ .header-right li{
62
+
63
+ float:left;
64
+
65
+ padding:33px 20px;
66
+
67
+ font-size:16px;
68
+
69
+ }
70
+
71
+ .wrapper-title{
72
+
73
+ padding-top:98px;
74
+
75
+ padding-bottom:100px;
76
+
77
+ }
78
+
79
+ .wrapper-title h1{
80
+
81
+ font-size:140px;
82
+
83
+ padding-left:80px;
84
+
85
+ }
86
+
87
+ span{
88
+
89
+ color:red;
90
+
91
+ }
92
+
93
+ .wrapper-title h2{
94
+
95
+ font-size:60px;
96
+
97
+ padding-left:80px;
98
+
99
+ }
100
+
101
+ .lesson-title{
102
+
103
+ font-size:19px;
104
+
105
+ border-bottom:2px solid #dee7ec;
106
+
107
+ margin:0 80px 1px 80px;
108
+
109
+ padding-bottom:15px;
110
+
111
+ }
112
+
113
+ .lessons{
114
+
115
+ padding:50px 60px;
116
+
117
+ }
118
+
119
+ .lesson-card{
120
+
121
+ float:left;
122
+
123
+ padding:0 20px;
124
+
125
+ }
126
+
127
+ .lesson-card p{
128
+
129
+ font-size:24px;
130
+
131
+ margin-top:30px;
132
+
133
+ }
134
+
135
+ .clear{
136
+
137
+ clear:both;
138
+
139
+ }
140
+
141
+ .contact-title{
142
+
143
+ padding:138px 80px 50px;
144
+
145
+ }
146
+
147
+ .contact-title h2{
148
+
149
+ font-size:28px;
150
+
151
+ border-bottom:2px solid #dee7ec;
152
+
153
+ padding-bottom:15px;
154
+
155
+ }
156
+
157
+ .contact-form{
158
+
159
+ padding:0 80px 100px 80px;
160
+
161
+ }
162
+
163
+ .contact-form input,textarea{
164
+
165
+ margin-top:10px;
166
+
167
+ margin-bottom:30px;
168
+
169
+ border:1px solid #dee7ec;
170
+
171
+ font-size:18px;
172
+
173
+ }
174
+
175
+ input{
176
+
177
+ height:63px;
178
+
179
+ width:400px;
180
+
181
+ padding:0 20px;
182
+
183
+ }
184
+
185
+ textarea{
186
+
187
+ width:400px;
188
+
189
+ padding:20px;
190
+
191
+ }
192
+
193
+ .button{
194
+
195
+ background-color:#dee7ec;
196
+
197
+ color:#889eab;
198
+
199
+ font-size:18px;
200
+
201
+ }
202
+
203
+ ```
204
+
205
+ ```
206
+
207
+ 変更後
208
+
209
+ html, body,
210
+
211
+ ul, ol, li,
212
+
213
+ h1, h2, h3, h4, h5, h6, p,
214
+
215
+ form, input, div {
216
+
217
+ margin: 0;
218
+
219
+ padding: 0;
220
+
221
+ }
222
+
223
+
224
+
225
+ body {
226
+
227
+ font-family: "Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif;
228
+
229
+ }
230
+
231
+
232
+
233
+ li {
234
+
235
+ list-style: none;
236
+
237
+ }
238
+
239
+ /* ここからCSSを記述してください */
240
+
241
+ header{
242
+
243
+ background-color:#26d0c9;
244
+
245
+ height:90px;
246
+
247
+ color:#fff;
248
+
249
+ }
250
+
251
+ .header-left{
252
+
253
+ float:left;
254
+
255
+ font-size:36px;
256
+
257
+ padding:20px 40px;
258
+
259
+ }
260
+
261
+ .header-right li{
262
+
263
+ float:left;
264
+
265
+ padding:33px 20px;
266
+
267
+ font-size:16px;
268
+
269
+ }
270
+
271
+ .wrapper-title{
272
+
273
+ padding-top:98px;
274
+
275
+ padding-bottom:100px;
276
+
277
+ }
278
+
279
+ .wrapper-title h1{
280
+
281
+ font-size:140px;
282
+
283
+ padding-left:80px;
284
+
285
+ }
286
+
287
+ span{
288
+
289
+ color:red;
290
+
291
+ }
292
+
293
+ .wrapper-title h2{
294
+
295
+ font-size:60px;
296
+
297
+ padding-left:80px;
298
+
299
+ }
300
+
301
+ .lesson-title{
302
+
303
+ font-size:19px;
304
+
305
+ border-bottom:2px solid #dee7ec;
306
+
307
+ margin:0 80px 1px 80px;
308
+
309
+ padding-bottom:15px;
310
+
311
+ }
312
+
313
+ .lessons{
314
+
315
+ padding:50px 60px;
316
+
317
+ }
318
+
319
+ .lesson-card{
320
+
321
+ float:left;
322
+
323
+ padding:0 20px;
324
+
325
+ }
326
+
327
+ .lesson-card p{
328
+
329
+ font-size:24px;
330
+
331
+ margin-top:30px;
332
+
333
+ }
334
+
335
+ .clear{
336
+
337
+ clear:both;
338
+
339
+ }
340
+
341
+ .contact-title{
342
+
343
+ padding:138px 80px 50px;
344
+
345
+ }
346
+
347
+ .contact-title h2{
348
+
349
+ font-size:28px;
350
+
351
+ border-bottom:2px solid #dee7ec;
352
+
353
+ padding-bottom:15px;
354
+
355
+ }
356
+
357
+ .contact-form{
358
+
359
+ padding:0 80px 100px 80px;
360
+
361
+ }
362
+
363
+ .contact-form input,textarea{
364
+
365
+ margin-top:10px;
366
+
367
+ margin-bottom:30px;
368
+
369
+ border:1px solid #dee7ec;
370
+
371
+ font-size:18px;
372
+
373
+ }
374
+
375
+ input{
376
+
377
+ height:63px;
378
+
379
+ width:400px;
380
+
381
+ padding:0 20px;
382
+
383
+ }
384
+
385
+ textarea{
386
+
387
+ height:85px;
388
+
389
+ width:400px;
390
+
391
+ padding:20px;
392
+
393
+ }
394
+
395
+ .button{
396
+
397
+ background-color:#dee7ec;
398
+
399
+ color:#889eab;
400
+
401
+ font-size:18px;
402
+
403
+ }
404
+
405
+ コード
406
+
407
+ ```
408
+
1
- 現在はProgateの初級編道場をやっています。作業中のプレビュー画面では正しいはずですが、判定後の画面では見た目が違っていて、それが原因で(?)次へ進めません。原因分かる方アドバイスお願いします????‍♂️
409
+ ```現在はProgateの初級編道場をやっています。作業中のプレビュー画面では正しいはずですが、判定後の画面では見た目が違っていて、それが原因で(?)次へ進めません。原因分かる方アドバイスお願いします????‍♂️
2
410
 
3
411
  ![![イメージ説明](a55a464480d3cacb04ff88c5847d4402.png)]
4
412