【css】我的CSS架構——base.css

來源:互聯網
上載者:User

今天發下我自己的css架構——base.css,作用是重設瀏覽器預設樣式和提供通用原子類。

@charset "utf-8";/*     @名稱: base    @功能: 重設瀏覽器預設樣式*//* 防止使用者自訂背景顏色對網頁的影響,添加讓使用者可以自訂字型 */html {    color:black;    background:white;}/* 內外邊距通常讓各個瀏覽器樣式的表現位置不同 */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 SimSun,tahoma,arial,sans-serif;}input,select,textarea {    font-size:100%;}/* 去掉各Table  cell 的邊距並讓其邊重合 */table {    border-collapse:collapse;    border-spacing:0;}/* IE bug fixed: 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,7焦點點狀線去除 */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;    overflow:hidden;    height:0;    line-height:0;    font-size:0;}/* 設定顯示和隱藏, 通常用來與 JS 配合 */.hide {    display:none;}.block {    display:block;}/* 設定內聯, 減少浮動帶來的bug */.fl {    float:left;    display:inline;}.fr {    float:right;    display:inline;}

 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.