OLD | NEW |
| (Empty) |
1 // http://meyerweb.com/eric/tools/css/reset/ | |
2 // v2.0 | 20110126 | |
3 // License: none (public domain) | |
4 | |
5 html, body, div, span, applet, object, iframe, | |
6 h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
7 a, abbr, acronym, address, big, cite, code, | |
8 del, dfn, em, img, ins, kbd, q, s, samp, | |
9 small, strike, strong, sub, sup, tt, var, | |
10 b, u, i, center, | |
11 dl, dt, dd, ol, ul, li, | |
12 fieldset, form, label, legend, | |
13 table, caption, tbody, tfoot, thead, tr, th, td, | |
14 article, aside, canvas, details, embed, | |
15 figure, figcaption, footer, header, hgroup, | |
16 menu, nav, output, ruby, section, summary, | |
17 time, mark, audio, video { | |
18 margin: 0; | |
19 padding: 0; | |
20 border: 0; | |
21 vertical-align: baseline; | |
22 } | |
23 // HTML5 display-role reset for older browsers | |
24 article, aside, details, figcaption, figure, | |
25 footer, header, hgroup, menu, nav, section { | |
26 display: block; | |
27 } | |
28 body { | |
29 line-height: 1; | |
30 } | |
31 ol, ul { | |
32 list-style: none; | |
33 } | |
34 blockquote, q { | |
35 quotes: none; | |
36 } | |
37 blockquote:before, blockquote:after, | |
38 q:before, q:after { | |
39 content: ''; | |
40 content: none; | |
41 } | |
42 table { | |
43 border-collapse: collapse; | |
44 border-spacing: 0; | |
45 } | |
OLD | NEW |