zoukankan      html  css  js  c++  java
  • CSS hack

    /*  by  司徒正美 2011.6.1*/
    
          #element {
            background:orange;/* FF4 safari5 */
          }
          #element {
            *background: blue;    /* IE7*/
          }
          #element {
            -background: red;     /* IE6 */
          }
    
    
          #element {
            background: green\0; /* IE8  opera11 */
          }
    
          :root #element { background:pink\9; }  /* IE9 */
    
          @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  /*IE10*/
            #element { background:lightgreen;
          }
    
    //所有版本的 Firefox
    @-moz-document url-prefix() {
      .selector {
         color:lime;
      }
    }
    

  • 相关阅读:
    时间序列数据
    python--模块
    聚类模型
    数模写作
    分类问题
    图论的基本概念
    706. Design HashMap
    第七讲异方差、多重共线性、逐步回归
    187.Repeated DNA Sequences
    C语言堆内存的分配和使用
  • 原文地址:https://www.cnblogs.com/rubylouvre/p/2067380.html
Copyright © 2011-2022 走看看