reset.css 是一個(gè)用于重置(或規(guī)范化) HTML 元素默認(rèn)樣式的 CSS 文件,它的作用是使各種不同的瀏覽器在渲染網(wǎng)頁(yè)時(shí)表現(xiàn)的更加一致。
由于不同瀏覽器之間存在細(xì)微的差異,這些差異可能會(huì)導(dǎo)致某些元素的大小、字體、行高、邊框、背景等屬性的表現(xiàn)不一致,reset.css 正是為了解決這個(gè)問(wèn)題而被創(chuàng)建出來(lái)的。
reset.css 并不是萬(wàn)能的,有時(shí)候我們可能會(huì)想要一些瀏覽器特有的樣式,所以在使用它的時(shí)候我們需要謹(jǐn)慎考慮,確保我們需要的樣式?jīng)]有被覆蓋或者修改了。
/* reset.css */ 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 元素樣式重置 */ 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; }
上面就是一個(gè)典型的 reset.css,其中包含了對(duì) HTML 元素默認(rèn)樣式的重置以及對(duì)一些特殊元素的處理,使用時(shí)我們只需要在 HTML 文件中引入該 CSS 文件即可。