css預重置樣式程式碼

admin發表於2017-02-24
預重置css樣式程式碼幾乎在每一個稍有經驗編寫的css檔案中都有應用,這足以說明它的有點,關於它到底有哪些好處這裡就不多介紹了,大家可以自行查閱,下面直接分享此程式碼。

程式碼如下:

[CSS] 純文字檢視 複製程式碼
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p, 
blockquote,th,td{margin:0;padding:0;} 
table{border-collapse:collapse;border-spacing:0;} 
fieldset,img{border:0;} 
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;} 
ol,ul{list-style:none;} 
caption,th {text-align:left;} 
h1,h2,h3,h4,h5,h6{font-size:100%; font-weight:normal;}

相關文章