CSS初始化是指在樣式表中設置一系列的初始值,使得不同瀏覽器在處理頁面時都從相同的起點開始。這樣可以保證頁面在各種瀏覽器中展現出的效果都是一致的。
/* CSS初始化代碼 */ html, body, 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, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td { /* 設置所有元素的外邊距、內邊距和邊框為0 */ margin: 0; padding: 0; border: 0; /* 設置默認字體、顏色和行高 */ font: inherit; color: inherit; line-height: inherit; } /* 塊級元素默認display為block,行內元素默認為inline */ html, body, blockquote, address, pre, form, figure, table, caption, th, tr, td, article, aside, canvas, details, embed, nav, output, video { display: block; } /* 去除列表前面的圓點符號和序號 */ ul, ol { list-style: none; } /* 水平線默認樣式 */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* a標簽默認樣式 */ a { text-decoration: none; } /* 禁止使用字體放大縮小 */ [disabled] { -webkit-text-size-adjust: none; } /* 設置表格邊框樣式 */ table { border-collapse: collapse; border-spacing: 0; } /* 表格表頭字體樣式 */ th { font-weight: bold; vertical-align: bottom; text-align: left; } /* 表格td字體樣式 */ td { vertical-align: top; text-align: left; }
在使用CSS初始化之后,再針對具體的元素進行樣式設計,就可以在不同瀏覽器中實現相同的頁面效果。CSS初始化也可以使用現成的框架或者第三方工具來完成,例如bootstrap、normalize.css等。
上一篇css初始頁填充手機