对于任何项目,在CSS重置(以及eric meyer重置)中包括什么其他东西会比较好

前端之家收集整理的这篇文章主要介绍了对于任何项目,在CSS重置(以及eric meyer重置)中包括什么其他东西会比较好 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我知道并使用eric meyer CSS重置,但是是否还有其他东西可以在重置CSS中添加呢?并可以节省我们的时间并提高兼容性.

这是默认的迈耶最新的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;
}

并且我还为此重置添加了img {border:0}.

最佳答案
我同意尼克的回答.您应该认真考虑使用yahoo’s reset(或其他信誉良好的来源).坦率地说,它们比您拥有更多的资源,可以在各种浏览器和环境中进行测试.随着新浏览器的出现,他们将保持更新.最后,您可以利用其免费的超快速CDN:

<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?3.1.0/build/cssreset/reset-min.css">
原文链接:https://www.f2er.com/css/530764.html

猜你在找的CSS相关文章