CSS
樣式表主要原因是每一個瀏覽器所使用的預設樣式皆不同,去呈現我們所設計的網頁外觀,這樣當我們每個瀏覽器外觀都不同時,有時候產生的間距或是線條等等問題不知道是從哪邊或是誰產生,這樣也就也不知道是寫在哪個標籤上,如果我們不統一全部瀏覽器樣式的話,這些問題就會導致我們在製作網頁畫面時非常麻煩,不方便去解決問題,因此避免為了樣式全部一模一樣的狀況才需要重置CSS
。
其實有很多種重置CSS
的寫法,但對於新手剛上路還是會建議先用Eric A. Meyer
所撰寫的css reset
會比較簡單容易上手。
明天開始要進行切版練習,就會用需要用到重置CSS
,但通常撰寫css reset
的文件我會把他跟撰寫網頁外觀樣式的style.css
分開放,比較不會寫到混亂。
css reset
如下方程式碼所示:
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
}