乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      css初始化代碼方案

       昵稱12945968 2013-07-15

        為了消除各瀏覽器對css默認(rèn)的設(shè)置,保持網(wǎng)頁在各瀏覽器中的外觀保持一致,初始化css就顯得非常必要了!很多時候出現(xiàn)的樣式不兼容問題,都可以通過css初始化代碼來解決。下面列舉常用的一些方案:

      1.最耗資源的,最簡單的

      * { padding: 0; margin: 0; border: 0; } 

      2.選擇性初始化舉例(綜合)

      復(fù)制代碼
      body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,legend,button
      form,fieldset,input,textarea,p,blockquote,th,td {   
        padding: 0;   
        margin: 0;   
      }
      /* 酌情修改 */
      body {
          background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋體","Arial Narrow";
      }
      
      /* 短引用的內(nèi)容可取值:''或"" */
      q:before,q:after {content:;}  
      
      /* 縮寫,圖片等無邊框 */
      fieldset,img,abbr,acronym {border: 0 none;}
      abbr,acronym {font-variant: normal;}
      legend {color:#000;}
      
      /* 清除特殊標(biāo)記的字體和字號 */
      address,caption,cite,code,dfn,em,strong,th,var {   
        font-weight: normal;   
        font-style: normal;   
      }
      
      /* 上下標(biāo) */
      sup {vertical-align: text-top;}
      sub {vertical-align: text-bottom;}
      
      /* 設(shè)置表格的邊框被合并為一個單一的邊框, 指定分隔邊框模型中單元格邊界之間的距離為0*/
      table {   
        border-collapse: collapse;   
        border-spacing: 0;   
      }   
      
      /* 表格標(biāo)題及內(nèi)容居左顯示 */
      caption,th {text-align: left;}
      input,img,select {vertical-align:middle;}
      
      /* 清除列表樣式 */
      ol,ul {list-style: none;}  
      
      /* 輸入控件字體 */
      input,button,textarea,select,optgroup,option {
          font-family:inherit;
          font-size:inherit;
          font-style:inherit;
          font-weight:inherit;
      }
      
      /* 標(biāo)題元素樣式清除 */ 
      h1,h2,h3,h4,h5,h6 {   
        font-weight: normal;   
        font-size: 100%;   
      }   
      
      /* 鏈接樣式,顏色可酌情修改 */
      del,ins,a {text-decoration:none;}
      a:link {color:#009;}
      a:visited {color:#800080;}
      a:hover,a:active,a:focus {color:#c00; text-decoration:underline;} 
      
      /* 鼠標(biāo)樣式 */
      input[type="submit"] {cursor: pointer;}
      button {cursor: pointer;}
      input::-moz-focus-inner { border: 0; padding: 0;}
      
      .clear {clear:both;}
      復(fù)制代碼

      3.sina的

      復(fù)制代碼
      /* 全局樣式 */
      body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div{
          margin:0;padding:0;border:0;
      }
      body{
          background:#fff;color:#333;font-size:12px; margin-top:5px;font-family:"SimSun","宋體","Arial Narrow";
      }
      ul,ol{
          list-style-type:none;
      }
      select,input,img,select{
          vertical-align:middle;
      }
      a{text-decoration:none;}
      a:link{color:#009;}
      a:visited{color:#800080;}
      a:hover,a:active,a:focus{color:#c00;text-decoration:underline;} 
      復(fù)制代碼

      4.yahoo的

      復(fù)制代碼
      html {
          background: none repeat scroll 0 0 #FFFFFF;
          color: #000000;
      }
      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 {
          margin: 0;
          padding: 0;
      }
      table {
          border-collapse: collapse;
          border-spacing: 0;
      }
      fieldset, img {
          border: 0 none;
      }
      address, caption, cite, code, dfn, em, strong, th, var {
          font-style: normal;
          font-weight: normal;
      }
      li {
          list-style: none outside none;
      }
      caption, th {
          text-align: left;
      }
      h1, h2, h3, h4, h5, h6 {
          font-size: 100%;
          font-weight: normal;
      }
      q:before, q:after {
          content: "";
      }
      abbr, acronym {
          border: 0 none;
          font-variant: normal;
      }
      sup {
          vertical-align: text-top;
      }
      sub {
          vertical-align: text-bottom;
      }
      input, textarea, select {
          font-family: inherit;
          font-size: inherit;
          font-weight: inherit;
      }
      input, textarea, select {
      }
      legend {
          color: #000000;
      }
      body {
          font: 13px/1.231 arial,helvetica,clean,sans-serif;
      }
      select, input, button, textarea {
          font: 99% arial,helvetica,clean,sans-serif;
      }
      table {
          font-size: inherit;
      }
      pre, code, kbd, samp, tt {
          font-family: monospace;
          line-height: 100%;
      }
      a {
          text-decoration: none;
      }
      a:hover, a:focus {
          text-decoration: underline;
      }
      strong {
          font-weight: bold;
      }
      input[type="submit"] {
          cursor: pointer;
      }
      button {
          cursor: pointer;
      }
      復(fù)制代碼

      5.博客園的

       

      復(fù)制代碼
      /*version: 2.7.0*/
      html,body{color:#000;background:#FFF;}
      body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{
          margin:0;padding:0;
      }
      table{border-collapse:collapse;border-spacing:0;}
      fieldset,img{border:0;}
      address,caption,cite,code,dfn,em,strong,th,var,optgroup{
          font-style:inherit;font-weight:inherit;
      }
      del,ins{text-decoration:none;}
      li{list-style:none;}
      caption,th{text-align:left;}
      h1,h2,h3,h4,h5,h6{    font-size:100%;font-weight:normal;}
      q:before,q:after{content:'';}
      abbr,acronym{border:0;font-variant:normal;}
      sup{vertical-align:baseline;}
      sub{vertical-align:baseline;}
      legend{color:#000;}
      input,button,textarea,select,optgroup,option{
          font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;
      }
      input,button,textarea,select{*font-size:100%;}
      .clear{clear:both;}
      input::-moz-focus-inner{ border: 0;padding: 0;}
      
      /*added*/
      input[type=button],input[type=submit] {-webkit-appearance: button;}
      復(fù)制代碼

        本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報。
        轉(zhuǎn)藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多