質問編集履歴

1

修正

2022/09/17 14:17

投稿

yukarin
yukarin

スコア21

test CHANGED
File without changes
test CHANGED
@@ -180,3 +180,113 @@
180
180
 
181
181
  ```
182
182
 
183
+ ```reset.css
184
+ /*
185
+ html5doctor.com Reset Stylesheet
186
+ v1.6.1
187
+ Last Updated: 2010-09-17
188
+ Author: Richard Clark - http://richclarkdesign.com
189
+ Twitter: @rich_clark
190
+ */
191
+
192
+ html, body, div, span, object, iframe,
193
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
194
+ abbr, address, cite, code,
195
+ del, dfn, em, img, ins, kbd, q, samp,
196
+ small, strong, sub, sup, var,
197
+ b, i,
198
+ dl, dt, dd, ol, ul, li,
199
+ fieldset, form, label, legend,
200
+ table, caption, tbody, tfoot, thead, tr, th, td,
201
+ article, aside, canvas, details, figcaption, figure,
202
+ footer, header, hgroup, menu, nav, section, summary,
203
+ time, mark, audio, video {
204
+ margin:0;
205
+ padding:0;
206
+ border:0;
207
+ outline:0;
208
+ font-size:100%;
209
+ vertical-align:baseline;
210
+ background:transparent;
211
+ }
212
+
213
+ body {
214
+ line-height:1;
215
+ }
216
+
217
+ article,aside,details,figcaption,figure,
218
+ footer,header,hgroup,menu,nav,section {
219
+ display:block;
220
+ }
221
+
222
+ nav ul {
223
+ list-style:none;
224
+ }
225
+ ul{
226
+ list-style: none;
227
+ }
228
+
229
+ blockquote, q {
230
+ quotes:none;
231
+ }
232
+
233
+ blockquote:before, blockquote:after,
234
+ q:before, q:after {
235
+ content:'';
236
+ content:none;
237
+ }
238
+
239
+ a {
240
+ margin:0;
241
+ padding:0;
242
+ font-size:100%;
243
+ vertical-align:baseline;
244
+ background:transparent;
245
+ list-style:none;
246
+ text-decoration: none;
247
+ }
248
+
249
+ /* change colours to suit your needs */
250
+ ins {
251
+ background-color:#ff9;
252
+ color:#000;
253
+ text-decoration:none;
254
+ }
255
+
256
+ /* change colours to suit your needs */
257
+ mark {
258
+ background-color:#ff9;
259
+ color:#000;
260
+ font-style:italic;
261
+ font-weight:bold;
262
+ }
263
+
264
+ del {
265
+ text-decoration: line-through;
266
+ }
267
+
268
+ abbr[title], dfn[title] {
269
+ border-bottom:1px dotted;
270
+ cursor:help;
271
+ }
272
+
273
+ table {
274
+ border-collapse:collapse;
275
+ border-spacing:0;
276
+ }
277
+
278
+ /* change border colour to suit your needs */
279
+ hr {
280
+ display:block;
281
+ height:1px;
282
+ border:0;
283
+ border-top:1px solid #cccccc;
284
+ margin:1em 0;
285
+ padding:0;
286
+ }
287
+
288
+ input, select {
289
+ vertical-align:middle;
290
+ }
291
+ ```
292
+