对于任何项目,在CSS重置(以及eric meyer重置)中包含哪些其他内容会更好

时间:2010-04-12 15:49:38

标签: css

我知道并使用eric meyer CSS重置,但是还有什么东西可以在重置css中添加吗?并且可以节省我们的时间并增加兼容性。

这是meyer最新的CSS重置代码。

/* v1.0 | 20080212 */

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, font, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

我也会通过此重置添加a img {border:0}

2 个答案:

答案 0 :(得分:3)

我同意尼克的回答。您应该认真考虑使用yahoo's reset(或其他一些有信誉的来源)。坦率地说,他们拥有比你更多的资源来测试各种浏览器和环境。随着新浏览器的问世,它们会随时更新。最后,你可以利用他们的免费超快CDN:

<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?3.1.0/build/cssreset/reset-min.css">

答案 1 :(得分:0)