各位讀者如果有在做網頁設計或是研究CSS的人因該知道Reset CSS,尤其是有些網頁的CSS除了Style.css還會多個Resest.css檔,主要目的是為了要統一個個瀏覽器的顯示規則,由於每個瀏覽器的顯示即規則都不同,尤其是IE,有在玩部落格佈景主題的人因該會常看到,WordPress的佈景主題都有,寫法都差不多,主要定義在標格、圖片邊框、DIV、文字….等等。
下面的Reset CSS是從WordPress的佈景主題COPY出來,大家也可以看看自己的部落或是看看別人的網頁因該也有,只是要找找寫在哪,大家研究看看吧!
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;



