css清除樣式的方法是將程式碼放入css文件,使用link引入,即可去掉相關預設css樣式,程式碼為【HTML5 display-role reset for older browsers】。
本教學操作環境:windows7系統、css3版,DELL G3電腦。
css清除樣式的方法:
將程式碼放入css文件,使用link引入,即可去掉相關預設css樣式。
/* v2.0 | 20110126 http://meyerweb.com/eric/tools/css/reset/ License: none (public domain) */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; }
css選擇器:
每一條css樣式定義由兩個部分組成,形式如下: [code] 選擇器{樣式} [/code] 在{ }之前的部分就是「選擇器」。 「選擇器」指明了{}中的「樣式」的作用對象,也就是「樣式」作用於網頁中的哪些元素
一個完整的HTML頁面是有很多不同的標籤組成,而標籤選擇器,則是決定哪些標籤採用對應的CSS樣式。
以上是css如何清除樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!