質問編集履歴

1

追記しました

2020/11/29 20:08

投稿

let
let

スコア41

test CHANGED
File without changes
test CHANGED
@@ -229,3 +229,197 @@
229
229
  }
230
230
 
231
231
  ```
232
+
233
+
234
+
235
+ ```reset.CSS
236
+
237
+ html, body, div, span, object, iframe,
238
+
239
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
240
+
241
+ abbr, address, cite, code,
242
+
243
+ del, dfn, em, img, ins, kbd, q, samp,
244
+
245
+ small, strong, sub, sup, var,
246
+
247
+ b, i,
248
+
249
+ dl, dt, dd, ol, ul, li,
250
+
251
+ fieldset, form, label, legend,
252
+
253
+ table, caption, tbody, tfoot, thead, tr, th, td,
254
+
255
+ article, aside, canvas, details, figcaption, figure,
256
+
257
+ footer, header, hgroup, menu, nav, section, summary,
258
+
259
+ time, mark, audio, video {
260
+
261
+ margin:0;
262
+
263
+ padding:0;
264
+
265
+ border:0;
266
+
267
+ outline:0;
268
+
269
+ font-size:100%;
270
+
271
+ vertical-align:baseline;
272
+
273
+ background:transparent;
274
+
275
+ }
276
+
277
+
278
+
279
+ body {
280
+
281
+ line-height:1;
282
+
283
+ }
284
+
285
+
286
+
287
+ article,aside,details,figcaption,figure,
288
+
289
+ footer,header,hgroup,menu,nav,section {
290
+
291
+ display:block;
292
+
293
+ }
294
+
295
+
296
+
297
+ nav ul {
298
+
299
+ list-style:none;
300
+
301
+ }
302
+
303
+
304
+
305
+ blockquote, q {
306
+
307
+ quotes:none;
308
+
309
+ }
310
+
311
+
312
+
313
+ blockquote:before, blockquote:after,
314
+
315
+ q:before, q:after {
316
+
317
+ content:'';
318
+
319
+ content:none;
320
+
321
+ }
322
+
323
+
324
+
325
+ a {
326
+
327
+ margin:0;
328
+
329
+ padding:0;
330
+
331
+ font-size:100%;
332
+
333
+ vertical-align:baseline;
334
+
335
+ background:transparent;
336
+
337
+ }
338
+
339
+
340
+
341
+ /* change colours to suit your needs */
342
+
343
+ ins {
344
+
345
+ background-color:#ff9;
346
+
347
+ color:#000;
348
+
349
+ text-decoration:none;
350
+
351
+ }
352
+
353
+
354
+
355
+ /* change colours to suit your needs */
356
+
357
+ mark {
358
+
359
+ background-color:#ff9;
360
+
361
+ color:#000;
362
+
363
+ font-style:italic;
364
+
365
+ font-weight:bold;
366
+
367
+ }
368
+
369
+
370
+
371
+ del {
372
+
373
+ text-decoration: line-through;
374
+
375
+ }
376
+
377
+
378
+
379
+ abbr[title], dfn[title] {
380
+
381
+ border-bottom:1px dotted;
382
+
383
+ cursor:help;
384
+
385
+ }
386
+
387
+
388
+
389
+ table {
390
+
391
+ border-collapse:collapse;
392
+
393
+ border-spacing:0;
394
+
395
+ }
396
+
397
+
398
+
399
+ /* change border colour to suit your needs */
400
+
401
+ hr {
402
+
403
+ display:block;
404
+
405
+ height:1px;
406
+
407
+ border:0;
408
+
409
+ border-top:1px solid #cccccc;
410
+
411
+ margin:1em 0;
412
+
413
+ padding:0;
414
+
415
+ }
416
+
417
+
418
+
419
+ input, select {
420
+
421
+ vertical-align:middle;
422
+
423
+ }
424
+
425
+ ```