2

我正在使用以下内容进行重置以补偿浏览器差异:

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

我使用的文件我认为很旧。有没有人有任何更新的东西,更适合不到几年的浏览器,例如 IE9 及更高版本?我问这个的主要原因之一是,当我尝试使用浏览器开发工具时,我厌倦了在检查 CSS 时看到重置文件中的许多条目。

4

2 回答 2

3

大多数当前(响应式)CSS 框架都使用 normalize.css,例如 Twitter Bootstrap 和 Zurb Foundation

http://necolas.github.io/normalize.css/

请看这里为什么要使用 normalize.css 解决方案而不是 reset.css
Normalize.css 和 Reset CSS 有什么区别?

于 2013-10-07T13:45:01.777 回答
1

您正在使用Meyer's Reset我认为这是重置 CSS 属性的最佳方式。如果您想使用此或任何其他重置技术,无论如何您都必须处理这些条目。

于 2013-10-07T13:45:27.413 回答