本文跟大家介紹如何用CSS樣式重置效果,有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。
在我們準備開發一個專案的時候,肯定要考慮到一些瀏覽器的兼容性,或者更方便自己編寫一個頁面,那麼這時候很多人就會想到CSS的重置,一般人都會這樣寫。
@charset "utf-8"; /* 使用重置样式表 */ html, body, p, 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; } /* remeber to define focus styles! */ :focus{ outline:0; } /* remeber to highlight inserts somehow */ ins{ text-decoration:none; } del{ text-decoration:line-through; } /* tables still need 'cellspacing="0" in the markup' */ table{ border-collapse:collapse; border-spacing:0; }
注意,不能像有些網站上寫的這樣:*{margin:0;padding:0;},這樣會白白耗費很多性能
#不過就上面的一大堆標籤而言,我們也有很多用不到的,和一些沒必要的,一把情況下,只用這些就好
body, dl, dd, h1, h2, h3, h4, h5, h6, p, form{margin:0;} ol,ul{margin:0; padding:0;}
好啦,重置就到這裡啦!
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多相關教學請訪問 CSS影片教學!
相關推薦:
以上是CSS如何重設樣式? CSS樣式重設效果的實作(程式碼實例)的詳細內容。更多資訊請關注PHP中文網其他相關文章!