CSS Reset的作用是清除所有浏览器默认样式,使页面在不同浏览器下表现一致。
示例:
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight: normal
}
相比于传统的CSS Reset,Normalize.css是一种现代的、为HTML5准备的优质替代方案。
示例:
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
Normalize.css的主要目的: