css 通用样式
reset.css 重置文件
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 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; }
common.css 通用文件
/* 重置文本框和按钮聚焦样式、边框...,重置后边框就没有了 */ input,button{ border: none; /* 清空浏览器默认样式 */ outline: none; outline-offset: 0; /* 外边框的偏移量 */ } button{ background: initial; /* 重置按钮按钮背景颜色为继承,或transparent透明也可以 */ padding: 0; } *::before, *::after { box-sizing: border-box; } a { text-decoration: none; color: inherit; } a:hover { color: #ff6700; } html { color: #333; min-width: 1226px; /* 页面的小宽度,pc端的页面宽度不能太窄,临界点,页面最小不能低于这个宽度,不然就出现滚动条 */ font: 14px/1.5 'Helvetica Neue', Helvetica, Arial, 'Microsoft Yahei', 'Hiragino Sans GB', 'Heiti SC', 'WenQuanYi Micro Hei', sans-serif; } /* 浮动 */ .fl { float: left; } .fr { float: right; } .clearfix::after { content: ''; display: block; clear: both; } /* 通用容器 */ .container { width: 1226px; margin-left: auto; margin-right: auto; }
Leave a comment
0 Comments.