在webjx.com前面的文章中,我們講過CSS Reset是指重設浏覽器的樣式。不同的浏覽器默認的樣式可能不近相同,所有開發時的第一件事可能就是如果把他們統一。
下面的代碼是YaHoo的方法,我們可以參考學習。
總結與編寫出,適合自己工作與學習的CSS Reset代碼。
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fIEldset,input,textarea,p,blockquote,th,td {
padding: 0;
margin: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fIEldset,img {
border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-weight: normal;
font-style: normal;
}
ol,ul {
list-style: none;
}
caption,th {
text-align: left;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-size: 100%;
}
q:before,q:after {
content:”;
}
abbr,acronym { border: 0;
}
大家可以參考一下,或者寫一個更適合自己的重置代碼。有何收獲,歡迎在webjx.com發表評論,與大家分享。或在W3Cbbs.com發貼,分享互聯網,有您更精彩。