隨著移動端的普及,越來越多的企業和個人選擇開發移動應用,然而對于不同的應用和頁面,其中也存在一些相同的樣式設計和布局,因此針對這些公共樣式,我們需要把它們整合起來,形成一套移動端公共CSS。
/* 移動端公共CSS */ /* 設置默認字體大小 */ html { font-size: 16px; } /* 去除頁面默認內外邊距和邊框 */ html, body, div, span, 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; } /* 設置頁面body的默認字體和背景顏色 */ body { font-family: Helvetica, Arial, sans-serif; background-color: #fff; } /* 清除a標簽的文本下劃線 */ a { text-decoration: none; } /* 重置默認列表樣式 */ ul, ol { list-style: none; } /* 修復圖片默認底部間距 */ img { display: block; border: none; } /* 移動端適配 */ @media only screen and (max-width: 640px) { html { font-size: 12px; } }
以上是一套簡單的移動端公共CSS,只包含一些常見樣式的設置,也可以根據實際項目需求進行修改和完善。