1、全面base.css
@charset "utf-8"; /* CSS Document */ @charset "utf-8"; /*! * @名稱:base.css * @功能:1、重設瀏覽器默認樣式 * 2、設置通用原子類 */ /* 防止用戶自定義背景顏色對網頁的影響,添加讓用戶可以自定義字體 */ html { background:white; color:black; } /* 內外邊距通常讓各個瀏覽器樣式的表現位置不同 */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { margin:0; padding:0; } /* 要注意表單元素並不繼承父級 font 的問題 */ body,button,input,select,textarea { font:12px \5b8b\4f53,arial,sans-serif; } input,select,textarea { font-size:100%; } /* 去掉 table cell 的邊距並讓其邊重合 */ table { border-collapse:collapse; border-spacing:0; } /* ie bug:th 不繼承 text-align */ th { text-align:inherit; } /* 去除默認邊框 */ fieldset,img { border:none; } /* ie6 7 8(q) bug 顯示為行內表現 */ iframe { display:block; } /* 去掉 firefox 下此元素的邊框 */ abbr,acronym { border:none; font-variant:normal; } /* 一致的 del 樣式 */ del { text-decoration:line-through; } address,caption,cite,code,dfn,em,th,var { font-style:normal; font-weight:500; } /* 去掉列表前的標識,li 會繼承 */ ol,ul { list-style:none; } /* 對齊是排版最重要的因素,別讓什么都居中 */ caption,th { text-align:left; } /* 來自yahoo,讓標題都自定義,適應多個系統應用 */ h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:500; } q:before,q:after { content:''; } /* 統一上標和下標 */ sub,sup { font-size:75%; line-height:0; position:relative; vertical-align:baseline; } sup { top:-0.5em; } sub { bottom:-0.25em; } /* 讓鏈接在 hover 狀態下顯示下划線 */ a:hover { text-decoration:underline; } /* 默認不顯示下划線,保持頁面簡潔 */ ins,a { text-decoration:none; } /* 去除 ie6 & ie7 焦點點狀線 */ a:focus,*:focus { outline:none; } /* 清除浮動 */ .clearfix:before,.clearfix:after { content:""; display:table; } .clearfix:after { clear:both; overflow:hidden; } .clearfix { zoom:1; /* for ie6 & ie7 */ } .clear { clear:both; display:block; font-size:0; height:0; line-height:0; overflow:hidden; } /* 設置顯示和隱藏,通常用來與 js 配合 */ .hide { display:none; } .block { display:block; } /* 設置浮動,減少浮動帶來的 bug */ .fl,.fr { display:inline; } .fl { float:left; } .fr { float:right; }
2、常用base.css
@charset "utf-8"; /* CSS Document */ body, ul, ol, dl, li, dd, h1, h2, h3, h4, h5, h6, p, input { margin: 0 } h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; font-family: "Microsoft YaHei"; } img { border: none } input, button, textarea, select { *font-size: 100%; border: none; } body { background: #fff; color: #5e5e5e; font: 14px/24px Microsoft YaHei, SimSun, Arial; } ul, ol { list-style: none; padding: 0 } table { border-collapse: collapse; border-spacing: 0 }/*默認a標簽樣式*/ a:link, a:visited { color: #5e5e5e; text-decoration: none; } a:hover { /*color:#999;*/ } a:hover { color: #c9394a; /*text-decoration: underline;*/ } a:active { color: #666; }/*浮動和清除浮動*/ .fl { float: left } .fr { float: right } .clear { zoom: 1 } .clear:after { content: ""; display: block; height: 0; visibility: visible; clear: both } /*顯示隱藏*/ .hide { display: none } .show { display: block }/*表格table和td有邊框*/ .boder_tl { border-top: 1px solid #ccc; border-left: 1px solid #ccc; } .boder_tl td { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; } .boder_bl { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; } .boder_bl td { border-top: 1px solid #ccc; border-right: 1px solid #ccc; } .boder_tr { border-top: 1px solid #ccc; border-right: 1px solid #ccc; } .boder_tr td { border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; } .boder_br { border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; } .boder_br td { border-top: 1px solid #ccc; border-left: 1px solid #ccc; } .txt_center { text-align: center; }/*表格table和tr有邊框*/ .boder_ltr_trborder { border: 1px solid #ccc; border-bottom: none; } .boder_ltr_trborder tr { border-bottom: 1px solid #ccc; }