樣式
- 重置樣式(reset.css)
- 公共樣式(commo.css)
- 獨立樣式(例如首頁:index.css)
- 重置樣式,將標簽原來自帶的樣式清除掉。
body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,input,form,textarea{
margin:0;
padding:0;
font-family:(默認就好);
}
ol,ul,li{
list-style:none;
}
a{
text-decoration: none;
display: block;
}
img{
border:none;
display: block;
}
.clearfloat{
zoom: 1;
}
.clearfloat:after{
display: block;
clear: both;
content: "";
visibility: hidden;
height: 0;
}
因為html中沒有作用域,所以建議在一個項目中,設置class名和id名時加入作用域名,例如index-banner.首頁的banner圖