Here's an HTML5 rest for you...it was originally posted here (might have to use google translate):perfectionorvanity.com
a, abbr, address, article, aside, audio, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary,
sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: Inherit;
font-style: Inherit;
vertical-align: Baseline;
}
article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary {
display: Block;
}
a, ins, del {
text-decoration: None;
}
ul, ol {
list-style: None;
}
table {
border-spacing: 0;
border-collapse: Collapse;
}
caption, th {
text-align: Left;
}
q:after, q:before {
content: "";
}
a, abbr, address, article, aside, audio, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, p, pre, q, samp, section, small, span, strong, sub, summary,
sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: Inherit;
font-style: Inherit;
vertical-align: Baseline;
}
article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary {
display: Block;
}
a, ins, del {
text-decoration: None;
}
ul, ol {
list-style: None;
}
table {
border-spacing: 0;
border-collapse: Collapse;
}
caption, th {
text-align: Left;
}
q:after, q:before {
content: "";
}
You can use Eric Myer's CSS Reset which helps reduce inconsistencies within browsers, such as default margics, font-sizes, heights, and more.
0
The worst thing about Meyer’s reset is :focus { outline: 0 } rule, if you’re lazy and don’t specify your own focus styles for EVERY link and EVERY form element.