質問編集履歴

5

修正

2016/03/06 07:37

投稿

yahret45
yahret45

スコア41

test CHANGED
File without changes
test CHANGED
@@ -46,354 +46,348 @@
46
46
 
47
47
 
48
48
 
49
- cssは以下のように記載しております。
49
+ #cssは以下のように記載しております。
50
+
51
+ ```body {
52
+
53
+ line-height: 1;
54
+
55
+ }
56
+
57
+ article, aside, details, figcaption, figure,
58
+
59
+ footer, header, hgroup, menu, nav, section {
60
+
61
+ display: block;
62
+
63
+ }
64
+
65
+
66
+
67
+ header{
68
+
69
+ text-align: right;
70
+
71
+ float: right;
72
+
73
+ }
74
+
75
+
76
+
77
+
78
+
79
+ nav ul,
80
+
81
+ ul {
82
+
83
+ list-style: none;
84
+
85
+ }
86
+
87
+
88
+
89
+ blockquote, q {
90
+
91
+ quotes: none;
92
+
93
+ }
94
+
95
+
96
+
97
+ blockquote:before, blockquote:after,
98
+
99
+ q:before, q:after {
100
+
101
+ content: '';
102
+
103
+ content: none;
104
+
105
+ }
106
+
107
+
108
+
109
+ a {
110
+
111
+ margin: 0;
112
+
113
+ padding: 0;
114
+
115
+ color:#000;
116
+
117
+ text-decoration: none;
118
+
119
+ vertical-align: baseline;
120
+
121
+ background: transparent;
122
+
123
+ }
124
+
125
+
126
+
127
+ /* change colours to suit your needs */
128
+
129
+ ins {
130
+
131
+ background-color: #ff9;
132
+
133
+ color: #000;
134
+
135
+ text-decoration: none;
136
+
137
+ }
138
+
139
+
140
+
141
+ merit{
142
+
143
+ float
144
+
145
+ }
146
+
147
+
148
+
149
+ /* change colours to suit your needs */
150
+
151
+ mark {
152
+
153
+ background-color: #ff9;
154
+
155
+ color: #000;
156
+
157
+ font-style: italic;
158
+
159
+ font-weight: bold;
160
+
161
+ }
162
+
163
+
164
+
165
+ del {
166
+
167
+ text-decoration: line-through;
168
+
169
+ }
170
+
171
+
172
+
173
+ abbr[title], dfn[title] {
174
+
175
+ border-bottom: 1px dotted;
176
+
177
+ cursor: help;
178
+
179
+ }
180
+
181
+
182
+
183
+ dl {
184
+
185
+ background-color:;
186
+
187
+ }
188
+
189
+
190
+
191
+ dl {
192
+
193
+ width: 230px;
194
+
195
+ height: 150px;
196
+
197
+ margin: 0auto;
198
+
199
+ }
200
+
201
+ body{
202
+
203
+ width:100%; /*ページ全体の幅は100%と指定する*/
204
+
205
+ text-align:center;/*ページ全体を中央揃えにする*/
206
+
207
+ }
208
+
209
+ #wrap{
210
+
211
+ width: 960px; /*全体の幅を指定する*/
212
+
213
+ margin: 0 auto; /*マージンの指定をする、ブラウザ対策*/
214
+
215
+ text-align:left; /*全体を左揃えにする。*/
216
+
217
+ }
218
+
219
+ .aa {
220
+
221
+ float:left;
222
+
223
+ }
224
+
225
+ header{
226
+
227
+ float:right;
228
+
229
+ }
230
+
231
+ table {
232
+
233
+ border-collapse: collapse;
234
+
235
+ border-spacing: 0;
236
+
237
+ }
238
+
239
+
240
+
241
+ /* change border colour to suit your needs */
242
+
243
+ hr {
244
+
245
+ display: block;
246
+
247
+ height: 1px;
248
+
249
+ border: 0;
250
+
251
+ border-top: 1px solid #cccccc;
252
+
253
+ margin: 1em 0;
254
+
255
+ padding: 0;
256
+
257
+ }
258
+
259
+
260
+
261
+ input, select {
262
+
263
+ vertical-align: middle;
264
+
265
+ }
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+ *:first-child + html body {
274
+
275
+ overflow: hidden;
276
+
277
+ }
278
+
279
+
280
+
281
+ * html body {
282
+
283
+ overflow: hidden;
284
+
285
+ }
286
+
287
+
288
+
289
+ input, select, textarea {
290
+
291
+ margin: 0px;
292
+
293
+ color: #727172;
294
+
295
+ border: solid 1px #bababa;
296
+
297
+ font-weight: normal;
298
+
299
+ padding: 0px 2px;
300
+
301
+ }
302
+
303
+
304
+
305
+ table {
306
+
307
+ border-collapse: collapse;
308
+
309
+ border-spacing: 0;
310
+
311
+ }
312
+
313
+
314
+
315
+ img {
316
+
317
+ border: 0px;
318
+
319
+ display: inline;
320
+
321
+ }
322
+
323
+
324
+
325
+ *:first-child + html img {
326
+
327
+ display: inline !important;
328
+
329
+ }
330
+
331
+
332
+
333
+ * html img {
334
+
335
+ display: inline !important;
336
+
337
+ }
338
+
339
+
340
+
341
+ a:focus {
342
+
343
+ outline: none;
344
+
345
+ }
346
+
347
+
348
+
349
+ sup {
350
+
351
+ vertical-align: top;
352
+
353
+ }
354
+
355
+
356
+
357
+ sub {
358
+
359
+ font-size: x-small;
360
+
361
+ vertical-align: text-bottom;
362
+
363
+ padding-right: 3px;
364
+
365
+ }
366
+
367
+
368
+
369
+ .clearfix:after {
370
+
371
+ visibility: hidden;
372
+
373
+ display: block;
374
+
375
+ font-size: 0;
376
+
377
+ content: " ";
378
+
379
+ clear: both;
380
+
381
+ height: 0;
382
+
383
+ }
384
+
385
+ * html .clearfix { zoom: 1; } /* IE6 */
386
+
387
+ *:first-child+html .clearfix { zoom: 1; } /* IE7 */
50
388
 
51
389
  ```
52
390
 
53
- body {
54
-
55
- line-height: 1;
56
-
57
- }
58
-
59
-
60
-
61
- article, aside, details, figcaption, figure,
62
-
63
- footer, header, hgroup, menu, nav, section {
64
-
65
- display: block;
66
-
67
- }
68
-
69
-
70
-
71
- header{
72
-
73
- text-align: right;
74
-
75
- float: right;
76
-
77
- }
78
-
79
-
80
-
81
-
82
-
83
- nav ul,
84
-
85
- ul {
86
-
87
- list-style: none;
88
-
89
- }
90
-
91
-
92
-
93
- blockquote, q {
94
-
95
- quotes: none;
96
-
97
- }
98
-
99
-
100
-
101
- blockquote:before, blockquote:after,
102
-
103
- q:before, q:after {
104
-
105
- content: '';
106
-
107
- content: none;
108
-
109
- }
110
-
111
-
112
-
113
- a {
114
-
115
- margin: 0;
116
-
117
- padding: 0;
118
-
119
- color:#000;
120
-
121
- text-decoration: none;
122
-
123
- vertical-align: baseline;
124
-
125
- background: transparent;
126
-
127
- }
128
-
129
-
130
-
131
- /* change colours to suit your needs */
132
-
133
- ins {
134
-
135
- background-color: #ff9;
136
-
137
- color: #000;
138
-
139
- text-decoration: none;
140
-
141
- }
142
-
143
-
144
-
145
- merit{
146
-
147
- float
148
-
149
- }
150
-
151
-
152
-
153
- /* change colours to suit your needs */
154
-
155
- mark {
156
-
157
- background-color: #ff9;
158
-
159
- color: #000;
160
-
161
- font-style: italic;
162
-
163
- font-weight: bold;
164
-
165
- }
166
-
167
-
168
-
169
- del {
170
-
171
- text-decoration: line-through;
172
-
173
- }
174
-
175
-
176
-
177
- abbr[title], dfn[title] {
178
-
179
- border-bottom: 1px dotted;
180
-
181
- cursor: help;
182
-
183
- }
184
-
185
-
186
-
187
- dl {
188
-
189
- background-color:;
190
-
191
- }
192
-
193
-
194
-
195
- dl {
196
-
197
- width: 230px;
198
-
199
- height: 150px;
200
-
201
- margin: 0auto;
202
-
203
- }
204
-
205
- body{
206
-
207
- width:100%; /*ページ全体の幅は100%と指定する*/
208
-
209
- text-align:center;/*ページ全体を中央揃えにする*/
210
-
211
- }
212
-
213
- #wrap{
214
-
215
- width: 960px; /*全体の幅を指定する*/
216
-
217
- margin: 0 auto; /*マージンの指定をする、ブラウザ対策*/
218
-
219
- text-align:left; /*全体を左揃えにする。*/
220
-
221
- }
222
-
223
- .aa {
224
-
225
- float:left;
226
-
227
- }
228
-
229
-
230
-
231
-
232
-
233
- header{
234
-
235
- float:right;
236
-
237
- }
238
-
239
- table {
240
-
241
- border-collapse: collapse;
242
-
243
- border-spacing: 0;
244
-
245
- }
246
-
247
-
248
-
249
- /* change border colour to suit your needs */
250
-
251
- hr {
252
-
253
- display: block;
254
-
255
- height: 1px;
256
-
257
- border: 0;
258
-
259
- border-top: 1px solid #cccccc;
260
-
261
- margin: 1em 0;
262
-
263
- padding: 0;
264
-
265
- }
266
-
267
-
268
-
269
- input, select {
270
-
271
- vertical-align: middle;
272
-
273
- }
274
-
275
-
276
-
277
-
278
-
279
-
280
-
281
- *:first-child + html body {
282
-
283
- overflow: hidden;
284
-
285
- }
286
-
287
-
288
-
289
- * html body {
290
-
291
- overflow: hidden;
292
-
293
- }
294
-
295
-
296
-
297
- input, select, textarea {
298
-
299
- margin: 0px;
300
-
301
- color: #727172;
302
-
303
- border: solid 1px #bababa;
304
-
305
- font-weight: normal;
306
-
307
- padding: 0px 2px;
308
-
309
- }
310
-
311
-
312
-
313
- table {
314
-
315
- border-collapse: collapse;
316
-
317
- border-spacing: 0;
318
-
319
- }
320
-
321
-
322
-
323
- img {
324
-
325
- border: 0px;
326
-
327
- display: inline;
328
-
329
- }
330
-
331
-
332
-
333
- *:first-child + html img {
334
-
335
- display: inline !important;
336
-
337
- }
338
-
339
-
340
-
341
- * html img {
342
-
343
- display: inline !important;
344
-
345
- }
346
-
347
-
348
-
349
- a:focus {
350
-
351
- outline: none;
352
-
353
- }
354
-
355
-
356
-
357
- sup {
358
-
359
- vertical-align: top;
360
-
361
- }
362
-
363
-
364
-
365
- sub {
366
-
367
- font-size: x-small;
368
-
369
- vertical-align: text-bottom;
370
-
371
- padding-right: 3px;
372
-
373
- }
374
-
375
-
376
-
377
- .clearfix:after {
378
-
379
- visibility: hidden;
380
-
381
- display: block;
382
-
383
- font-size: 0;
384
-
385
- content: " ";
386
-
387
- clear: both;
388
-
389
- height: 0;
390
-
391
- }
392
-
393
- * html .clearfix { zoom: 1; } /* IE6 */
394
-
395
- *:first-child+html .clearfix { zoom: 1; } /* IE7 */```
396
-
397
391
 
398
392
 
399
393
  お知恵をお貸し頂けますと幸いです。

4

依頼を反映しました。

2016/03/06 07:37

投稿

yahret45
yahret45

スコア41

test CHANGED
File without changes
test CHANGED
@@ -48,7 +48,7 @@
48
48
 
49
49
  cssは以下のように記載しております。
50
50
 
51
- '''css
51
+ ```
52
52
 
53
53
  body {
54
54
 
@@ -392,7 +392,7 @@
392
392
 
393
393
  * html .clearfix { zoom: 1; } /* IE6 */
394
394
 
395
- *:first-child+html .clearfix { zoom: 1; } /* IE7 */'''
395
+ *:first-child+html .clearfix { zoom: 1; } /* IE7 */```
396
396
 
397
397
 
398
398
 

3

依頼を反映させました

2016/03/06 07:36

投稿

yahret45
yahret45

スコア41

test CHANGED
File without changes
test CHANGED
@@ -46,11 +46,9 @@
46
46
 
47
47
 
48
48
 
49
+ cssは以下のように記載しております。
50
+
49
- '''cssは以下のように記載しております。
51
+ '''css
50
-
51
- }
52
-
53
-
54
52
 
55
53
  body {
56
54
 

2

追記依頼を反映させました

2016/03/06 07:35

投稿

yahret45
yahret45

スコア41

test CHANGED
File without changes
test CHANGED
@@ -30,7 +30,7 @@
30
30
 
31
31
  htmlは以下のように記載しております。
32
32
 
33
- ------------------------
33
+ ```html <div></div>
34
34
 
35
35
  <body>
36
36
 
@@ -42,13 +42,11 @@
42
42
 
43
43
  <div><img src="bg-cheese.jpg"></div>
44
44
 
45
- <div><img src="catch.png"></div>
45
+ <div><img src="catch.png"></div>```
46
-
47
-
48
-
49
- --------------------------
46
+
50
-
47
+
48
+
51
- cssは以下のように記載しております。
49
+ '''cssは以下のように記載しております。
52
50
 
53
51
  }
54
52
 
@@ -396,7 +394,7 @@
396
394
 
397
395
  * html .clearfix { zoom: 1; } /* IE6 */
398
396
 
399
- *:first-child+html .clearfix { zoom: 1; } /* IE7 */
397
+ *:first-child+html .clearfix { zoom: 1; } /* IE7 */'''
400
398
 
401
399
 
402
400
 

1

誤字

2016/03/06 07:33

投稿

yahret45
yahret45

スコア41

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,4 @@
1
- 初めて投稿さて頂ます。
1
+ 初めて投稿さて頂ます。
2
2
 
3
3
 
4
4