質問編集履歴

7

修正

2017/06/25 10:22

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -96,15 +96,15 @@
96
96
 
97
97
  <tr>
98
98
 
99
- <td>9時</td>
100
-
101
- <td>12時</td>
99
+ <td>1</td>
100
+
102
-
101
+ <td>2人</td>
102
+
103
+ <td>3人</td>
104
+
105
+ <td>4人</td>
106
+
103
- <td>15</td>
107
+ <td>5</td>
104
-
105
- <td>18時</td>
106
-
107
- <td>21時</td>
108
108
 
109
109
  <tr>
110
110
 

6

追加

2017/06/25 10:22

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -10,126 +10,396 @@
10
10
 
11
11
  何が問題なのでしょうか?教えて頂けたらありがたいです。よろしくお願いします。
12
12
 
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
13
- ###発生している問題・エラメッセ
23
+ ###該当のソスコ
24
+
14
-
25
+ ```HTML
26
+
15
-
27
+ <!DOCTYPE html>
28
+
29
+ <html lang="ja">
30
+
31
+ <head>
32
+
33
+ <meta charset="UTF-8">
34
+
35
+ <title></title>
36
+
37
+ <link rel="stylesheet" type="text/css" href="style.css">
38
+
39
+
40
+
41
+ </head>
42
+
43
+ <body>
44
+
45
+ <div class="header">
46
+
47
+
48
+
49
+ </div>
50
+
51
+
52
+
53
+ <div class="main" id="main">
54
+
55
+
56
+
57
+ <div class="whole-photo">
58
+
59
+ <div id="photo01" class="photoframe">
60
+
61
+
62
+
63
+ <p class="photo"><img src=""></p>
64
+
65
+
66
+
67
+ <p class="in"></p>
68
+
69
+
70
+
71
+ </div>
72
+
73
+
74
+
75
+
76
+
77
+ <div class="note">
78
+
79
+ <div class="letters">
80
+
81
+ <p></p>
82
+
83
+ <p></p>
84
+
85
+ </div>
86
+
87
+
88
+
89
+ </div>
90
+
91
+
92
+
93
+
94
+
95
+ <table class="days">
96
+
97
+ <tr>
98
+
99
+ <td>9時</td>
100
+
101
+ <td>12時</td>
102
+
103
+ <td>15時</td>
104
+
105
+ <td>18時</td>
106
+
107
+ <td>21時</td>
108
+
109
+ <tr>
110
+
111
+
112
+
113
+ <td><img src="pic1.png"></td>
114
+
115
+ <td><img src="pic2.png"></td>
116
+
117
+ <td><img src="pic3.png"></td>
118
+
119
+ <td><img src="pic4.png"></td>
120
+
121
+ <td><img src="pic5.png"></td>
122
+
123
+
124
+
125
+ </tr>
126
+
127
+ </table>
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+ <div class="push"></div>
142
+
143
+ </div>
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+ <div class="footer" id="footer">
156
+
157
+ </div>
158
+
159
+
160
+
161
+ </body>
162
+
163
+ </html>
16
164
 
17
165
  ```
18
166
 
167
+ ```CSS
168
+
169
+
170
+
171
+ body{
172
+
173
+ width: 100%;
174
+
175
+ margin: 0px;
176
+
177
+ padding: 0px;
178
+
179
+ background-color:white;
180
+
181
+
182
+
183
+
184
+
185
+ }
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+ .main{
200
+
201
+ width: 100%;
202
+
203
+ height: 1000px;
204
+
205
+ padding: 100px 0px;
206
+
207
+ margin: 0px;
208
+
209
+ }
210
+
211
+
212
+
213
+
214
+
215
+ .whole-photo{
216
+
217
+ margin-left:70px;
218
+
219
+ margin-top: 50px;
220
+
221
+ position:relative;
222
+
223
+ }
224
+
225
+
226
+
227
+
228
+
229
+
230
+
231
+ .photoframe {
232
+
233
+ position: relative;
234
+
235
+ display: inline;
236
+
237
+ float: left;
238
+
239
+ width: 340px;
240
+
241
+ height: 430px;
242
+
243
+ overflow: hidden;
244
+
245
+ margin: 0 10px 20px;
246
+
247
+ padding: 15px;
248
+
249
+ background: #ffffff;
250
+
251
+ border: 1px solid rgba(0, 0, 0, 0.3);
252
+
253
+ text-align: center;
254
+
255
+ -webkit-border-radius: 2px;
256
+
257
+ -moz-border-radius: 2px;
258
+
259
+ border-radius: 2px;
260
+
261
+ -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
262
+
263
+ -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
264
+
265
+ box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
266
+
267
+ z-index: 1;
268
+
269
+ }
270
+
271
+
272
+
273
+ .photoframe .photo {
274
+
275
+ width: 340px;
276
+
277
+ height: 385px;
278
+
279
+ overflow: hidden;
280
+
281
+ margin: 0 0 10px;
282
+
283
+ padding: 0;
284
+
285
+ -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
286
+
287
+ -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
288
+
289
+ box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
290
+
291
+ }
292
+
293
+
294
+
295
+ .photoframe img {
296
+
297
+ position: relative;
298
+
299
+ display: block;
300
+
301
+ margin: 0;
302
+
303
+ padding: 0;
304
+
305
+ z-index: -1;
306
+
307
+ width:339px;
308
+
309
+ height:359px;
310
+
311
+ }
312
+
313
+
314
+
315
+
316
+
317
+ .note{
318
+
319
+ width:390px;
320
+
321
+ height:460px;
322
+
323
+ float:right;
324
+
325
+ margin-right:160px;
326
+
327
+ position: relative;
328
+
329
+ background-color: #ffffe7;
330
+
331
+ background-image:
332
+
333
+ linear-gradient(rgba(241,207,164,0.5) .1em, transparent .1em);
334
+
335
+ background-size: 100% 1.5em;
336
+
337
+ line-height:1.5em;}
338
+
339
+
340
+
341
+
342
+
343
+ .in{
344
+
345
+ padding-bottom: 20px;
346
+
347
+ font-size: 28px;
348
+
349
+ margin-top: 5px;
350
+
351
+
352
+
353
+ }
354
+
355
+
356
+
357
+
358
+
19
- エラーメッセージ
359
+ .letters{
360
+
361
+ padding-top:10px;
362
+
363
+ padding-left:20px;
364
+
365
+ padding-right:20px;
366
+
367
+ font-size:28px;
368
+
369
+ line-height:130%;
370
+
371
+ }
372
+
373
+
374
+
375
+
376
+
377
+ .days{
378
+
379
+ text-align: center;
380
+
381
+ border:1px solid black;
382
+
383
+ font-size:22px;
384
+
385
+ margin-top:100px;
386
+
387
+
388
+
389
+
390
+
391
+ }
392
+
393
+
394
+
395
+ .days img{
396
+
397
+ width:200px;
398
+
399
+ }
400
+
401
+
402
+
403
+
20
404
 
21
405
  ```
22
-
23
-
24
-
25
- ###該当のソースコード
26
-
27
- ```ここに言語を入力
28
-
29
- HTML
30
-
31
- <!DOCTYPE html>
32
-
33
- <html lang="ja">
34
-
35
- <head>
36
-
37
- <meta charset="UTF-8">
38
-
39
- <title>numbers</title>
40
-
41
- <link rel="stylesheet" type="text/css" href="style.css">
42
-
43
- </head>
44
-
45
- <body>
46
-
47
- <div class="header">
48
-
49
- <h1>
50
-
51
-
52
-
53
- </h1>
54
-
55
- </div>
56
-
57
-
58
-
59
- <div class="main">
60
-
61
-
62
-
63
- <div class=“photos”>
64
-
65
- <div id="photo01" class="photoframe">
66
-
67
-
68
-
69
- <p class="photo"><img src=“pic.jpg"></p>
70
-
71
-
72
-
73
- <p class=“hot”></p>
74
-
75
-
76
-
77
- </div>
78
-
79
-
80
-
81
-
82
-
83
- <div class=“memo”>
84
-
85
- <div class=“short”>
86
-
87
- <p></p>
88
-
89
- <p></p>
90
-
91
- </div>
92
-
93
-
94
-
95
- </div>
96
-
97
-
98
-
99
- <table class="days">
100
-
101
- <tr>
102
-
103
- <td>1人</td>
104
-
105
- <td>2人</td>
106
-
107
- <td>3人</td>
108
-
109
- <td>4人</td>
110
-
111
- <td>5人</td>
112
-
113
- <tr>
114
-
115
-
116
-
117
- <td><img src="pic1.png"></td>
118
-
119
- <td><img src="pic2.png"></td>
120
-
121
- <td><img src="pic3.png"></td>
122
-
123
- <td><img src="pic4.png"></td>
124
-
125
- <td><img src="pic5.png"></td>
126
-
127
-
128
-
129
- </tr>
130
-
131
- </table>
132
-
133
-
134
-
135
- </div>

5

削除

2017/06/25 10:21

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -133,311 +133,3 @@
133
133
 
134
134
 
135
135
  </div>
136
-
137
-
138
-
139
- CSS
140
-
141
- body{
142
-
143
- width: 100%;
144
-
145
- margin: 0px;
146
-
147
- padding: 0px;
148
-
149
- background-color: white;
150
-
151
- }
152
-
153
-
154
-
155
-
156
-
157
-
158
-
159
- .header{
160
-
161
- position: fixed;
162
-
163
- width: 100%;
164
-
165
- height: 85px;
166
-
167
- margin: 0px;
168
-
169
- padding: 0px;
170
-
171
- background-color: #ffffff;
172
-
173
- z-index: 9999;
174
-
175
- top: 0px;
176
-
177
- left: 0px;
178
-
179
- }
180
-
181
- .header h1,img{
182
-
183
- width: 250px;
184
-
185
- margin: 0px 0px 0px 6%;
186
-
187
- float: left;
188
-
189
- }
190
-
191
- .header nav{
192
-
193
- padding-right: 6%;
194
-
195
- }
196
-
197
- .header li{
198
-
199
- width: 180px;
200
-
201
- padding: 0px;
202
-
203
- margin: 0px;
204
-
205
- font-size: 15px;
206
-
207
- color: #3d9ec7;
208
-
209
- list-style: none;
210
-
211
- text-align: center;
212
-
213
- }
214
-
215
- .header li :visited{
216
-
217
- color: #3d9ec7;
218
-
219
- }
220
-
221
- .header_item{
222
-
223
- display: inline;
224
-
225
- float: right;
226
-
227
- }
228
-
229
-
230
-
231
-
232
-
233
-
234
-
235
- .main{
236
-
237
- width: 100%;
238
-
239
- height: 1000px;
240
-
241
- padding: 100px 0px;
242
-
243
- margin: 0px;
244
-
245
- }
246
-
247
-
248
-
249
-
250
-
251
-
252
-
253
- .whole-photo{
254
-
255
- margin-left:70px;
256
-
257
- margin-top: 50px;
258
-
259
- position:relative;
260
-
261
- }
262
-
263
-
264
-
265
-
266
-
267
-
268
-
269
- .photoframe {
270
-
271
- position: relative;
272
-
273
- display: inline;
274
-
275
- float: left;
276
-
277
- width: 340px;
278
-
279
- height: 430px;
280
-
281
- overflow: hidden;
282
-
283
- margin: 0 10px 20px;
284
-
285
- padding: 15px;
286
-
287
- background: #ffffff;
288
-
289
- border: 1px solid rgba(0, 0, 0, 0.3);
290
-
291
- text-align: center;
292
-
293
- -webkit-border-radius: 2px;
294
-
295
- -moz-border-radius: 2px;
296
-
297
- border-radius: 2px;
298
-
299
- -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
300
-
301
- -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
302
-
303
- box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
304
-
305
- z-index: 1;
306
-
307
- }
308
-
309
-
310
-
311
- .photoframe .photo {
312
-
313
- width: 340px;
314
-
315
- height: 385px;
316
-
317
- overflow: hidden;
318
-
319
- margin: 0 0 10px;
320
-
321
- padding: 0;
322
-
323
- -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
324
-
325
- -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
326
-
327
- box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
328
-
329
- }
330
-
331
-
332
-
333
- .photoframe img {
334
-
335
- position: relative;
336
-
337
- display: block;
338
-
339
- margin: 0;
340
-
341
- padding: 0;
342
-
343
- z-index: -1;
344
-
345
- width:339px;
346
-
347
- height:359px;
348
-
349
- }
350
-
351
-
352
-
353
-
354
-
355
- .memo{
356
-
357
- width:390px;
358
-
359
- height:460px;
360
-
361
- float:right;
362
-
363
- margin-right:160px;
364
-
365
- position: relative;
366
-
367
- background-color: #ffffe7;
368
-
369
- background-image:
370
-
371
- linear-gradient(rgba(241,207,164,0.5) .1em, transparent .1em);
372
-
373
- background-size: 100% 1.5em;
374
-
375
- line-height:1.5em;}
376
-
377
-
378
-
379
-
380
-
381
- .short{
382
-
383
- padding-bottom: 20px;
384
-
385
- font-size: 28px;
386
-
387
- margin-top: 5px;
388
-
389
-
390
-
391
- }
392
-
393
-
394
-
395
-
396
-
397
- .letters{
398
-
399
- padding-top:10px;
400
-
401
- padding-left:20px;
402
-
403
- padding-right:20px;
404
-
405
- font-size:28px;
406
-
407
- line-height:130%;
408
-
409
- }
410
-
411
-
412
-
413
-
414
-
415
- .days{
416
-
417
- text-align: center;
418
-
419
- border:1px solid black;
420
-
421
- font-size:22px;
422
-
423
- margin-top:100px;
424
-
425
-
426
-
427
-
428
-
429
- }
430
-
431
-
432
-
433
- .days img{
434
-
435
- width:200px;
436
-
437
- }
438
-
439
-
440
-
441
-
442
-
443
- ```

4

追加

2017/06/25 10:02

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -246,20 +246,6 @@
246
246
 
247
247
 
248
248
 
249
- @font-face {
250
-
251
- font-family:"ヒラギノ丸ゴ Pro W4;
252
-
253
- src: url("font.eot?") format('eot');
254
-
255
- src: url("font.eot?#iefix") format('embedded-opentype'),
256
-
257
- url("font.woff") format('woff'),
258
-
259
- url("font.ttf") format('truetype');
260
-
261
- }
262
-
263
249
 
264
250
 
265
251
 

3

追加

2017/06/25 09:56

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -138,23 +138,309 @@
138
138
 
139
139
  CSS
140
140
 
141
+ body{
142
+
143
+ width: 100%;
144
+
145
+ margin: 0px;
146
+
147
+ padding: 0px;
148
+
149
+ background-color: white;
150
+
151
+ }
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+ .header{
160
+
161
+ position: fixed;
162
+
163
+ width: 100%;
164
+
165
+ height: 85px;
166
+
167
+ margin: 0px;
168
+
169
+ padding: 0px;
170
+
171
+ background-color: #ffffff;
172
+
173
+ z-index: 9999;
174
+
175
+ top: 0px;
176
+
177
+ left: 0px;
178
+
179
+ }
180
+
181
+ .header h1,img{
182
+
183
+ width: 250px;
184
+
185
+ margin: 0px 0px 0px 6%;
186
+
187
+ float: left;
188
+
189
+ }
190
+
191
+ .header nav{
192
+
193
+ padding-right: 6%;
194
+
195
+ }
196
+
197
+ .header li{
198
+
199
+ width: 180px;
200
+
201
+ padding: 0px;
202
+
203
+ margin: 0px;
204
+
205
+ font-size: 15px;
206
+
207
+ color: #3d9ec7;
208
+
209
+ list-style: none;
210
+
211
+ text-align: center;
212
+
213
+ }
214
+
215
+ .header li :visited{
216
+
217
+ color: #3d9ec7;
218
+
219
+ }
220
+
221
+ .header_item{
222
+
223
+ display: inline;
224
+
225
+ float: right;
226
+
227
+ }
228
+
229
+
230
+
231
+
232
+
233
+
234
+
235
+ .main{
236
+
237
+ width: 100%;
238
+
239
+ height: 1000px;
240
+
241
+ padding: 100px 0px;
242
+
243
+ margin: 0px;
244
+
245
+ }
246
+
247
+
248
+
249
+ @font-face {
250
+
251
+ font-family:"ヒラギノ丸ゴ Pro W4;
252
+
253
+ src: url("font.eot?") format('eot');
254
+
255
+ src: url("font.eot?#iefix") format('embedded-opentype'),
256
+
257
+ url("font.woff") format('woff'),
258
+
259
+ url("font.ttf") format('truetype');
260
+
261
+ }
262
+
263
+
264
+
265
+
266
+
267
+ .whole-photo{
268
+
269
+ margin-left:70px;
270
+
271
+ margin-top: 50px;
272
+
273
+ position:relative;
274
+
275
+ }
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+ .photoframe {
284
+
285
+ position: relative;
286
+
287
+ display: inline;
288
+
289
+ float: left;
290
+
291
+ width: 340px;
292
+
293
+ height: 430px;
294
+
295
+ overflow: hidden;
296
+
297
+ margin: 0 10px 20px;
298
+
299
+ padding: 15px;
300
+
301
+ background: #ffffff;
302
+
303
+ border: 1px solid rgba(0, 0, 0, 0.3);
304
+
305
+ text-align: center;
306
+
307
+ -webkit-border-radius: 2px;
308
+
309
+ -moz-border-radius: 2px;
310
+
311
+ border-radius: 2px;
312
+
313
+ -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
314
+
315
+ -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
316
+
317
+ box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
318
+
319
+ z-index: 1;
320
+
321
+ }
322
+
323
+
324
+
325
+ .photoframe .photo {
326
+
327
+ width: 340px;
328
+
329
+ height: 385px;
330
+
331
+ overflow: hidden;
332
+
333
+ margin: 0 0 10px;
334
+
335
+ padding: 0;
336
+
337
+ -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
338
+
339
+ -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
340
+
341
+ box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
342
+
343
+ }
344
+
345
+
346
+
347
+ .photoframe img {
348
+
349
+ position: relative;
350
+
351
+ display: block;
352
+
353
+ margin: 0;
354
+
355
+ padding: 0;
356
+
357
+ z-index: -1;
358
+
359
+ width:339px;
360
+
361
+ height:359px;
362
+
363
+ }
364
+
365
+
366
+
367
+
368
+
369
+ .memo{
370
+
371
+ width:390px;
372
+
373
+ height:460px;
374
+
375
+ float:right;
376
+
377
+ margin-right:160px;
378
+
379
+ position: relative;
380
+
381
+ background-color: #ffffe7;
382
+
383
+ background-image:
384
+
385
+ linear-gradient(rgba(241,207,164,0.5) .1em, transparent .1em);
386
+
387
+ background-size: 100% 1.5em;
388
+
389
+ line-height:1.5em;}
390
+
391
+
392
+
393
+
394
+
395
+ .short{
396
+
397
+ padding-bottom: 20px;
398
+
399
+ font-size: 28px;
400
+
401
+ margin-top: 5px;
402
+
403
+
404
+
405
+ }
406
+
407
+
408
+
409
+
410
+
411
+ .letters{
412
+
413
+ padding-top:10px;
414
+
415
+ padding-left:20px;
416
+
417
+ padding-right:20px;
418
+
419
+ font-size:28px;
420
+
421
+ line-height:130%;
422
+
423
+ }
424
+
425
+
426
+
427
+
428
+
141
429
  .days{
142
430
 
143
431
  text-align: center;
144
432
 
145
- margin-top: 100px;
146
-
147
- font-size:25px;
148
-
149
433
  border:1px solid black;
150
434
 
151
-
435
+ font-size:22px;
436
+
152
-
437
+ margin-top:100px;
438
+
439
+
440
+
441
+
442
+
153
- }
443
+ }
154
-
155
-
156
-
157
-
158
444
 
159
445
 
160
446
 
@@ -166,4 +452,6 @@
166
452
 
167
453
 
168
454
 
455
+
456
+
169
457
  ```

2

追加

2017/06/25 09:53

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -132,6 +132,10 @@
132
132
 
133
133
 
134
134
 
135
+ </div>
136
+
137
+
138
+
135
139
  CSS
136
140
 
137
141
  .days{

1

追加

2017/06/25 07:40

投稿

miramikan
miramikan

スコア26

test CHANGED
File without changes
test CHANGED
@@ -27,6 +27,74 @@
27
27
  ```ここに言語を入力
28
28
 
29
29
  HTML
30
+
31
+ <!DOCTYPE html>
32
+
33
+ <html lang="ja">
34
+
35
+ <head>
36
+
37
+ <meta charset="UTF-8">
38
+
39
+ <title>numbers</title>
40
+
41
+ <link rel="stylesheet" type="text/css" href="style.css">
42
+
43
+ </head>
44
+
45
+ <body>
46
+
47
+ <div class="header">
48
+
49
+ <h1>
50
+
51
+
52
+
53
+ </h1>
54
+
55
+ </div>
56
+
57
+
58
+
59
+ <div class="main">
60
+
61
+
62
+
63
+ <div class=“photos”>
64
+
65
+ <div id="photo01" class="photoframe">
66
+
67
+
68
+
69
+ <p class="photo"><img src=“pic.jpg"></p>
70
+
71
+
72
+
73
+ <p class=“hot”></p>
74
+
75
+
76
+
77
+ </div>
78
+
79
+
80
+
81
+
82
+
83
+ <div class=“memo”>
84
+
85
+ <div class=“short”>
86
+
87
+ <p></p>
88
+
89
+ <p></p>
90
+
91
+ </div>
92
+
93
+
94
+
95
+ </div>
96
+
97
+
30
98
 
31
99
  <table class="days">
32
100