zoukankan      html  css  js  c++  java
  • IE6/7兼容伪类、IE9以下兼容颜色渐变、IE8以下兼容nth:child(n)

    1.IE6/7兼容伪类

      _1.CSS部分:一个有冒号,一个是空格分隔。前者IE8+及其他现代浏览器;后者为IE6-7准备的

      #test:before, #test before{
        content: attr(data-content);
         0;
        height: 0;
      }

      _2.HTML部分

      <div id="testdata-content=""></div>

      设置content

      _3.JS部分 设置IE6/7

      var $beforeAfter = function(dom) {
        if (document.querySelector || !dom && dom.nodeType !== 1) return;
        var content = dom.getAttribute("data-content") || '';
        var before = document.createElement("before") , after = document.createElement("after");
        before.innerHTML = content;
        after.innerHTML = content;
        dom.insertBefore(before, dom.firstChild);
        dom.appendChild(after);
      };

      _4使用
      $beforeAfter(document.getElementById("test"));

    2.IE9以下兼容颜色渐变

      filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#237CB9', endColorstr='#7BBCF2', gradientType='1');

      gradientType为0时代表垂直,为1时代表水平

      

      (补充) 

      background: linear-gradient(bottom,blue,#fff); //渐变
      background: -ms-linear-gradient(bottom,blue,#fff); //IE
      background: -webkit-linear-gradient(bottom,blue,#fff); //谷歌
      background: -o-linear-gradient(bottom,blue,#fff); //opera
      background: -moz-linear-gradient(bottom,blue,#fff); //火狐

    3.IE8以下兼容nth:child(n)

      1.table tr td:first-child+td{

      }

      2.使用Jquery   $("table tr td:nth-child(2)").css("background-color","yellow");

  • 相关阅读:
    党报
    一个人只有敢于承担责任,才有可能被赋予更大的责任。做不
    勇于担当:好男人的三块责任田——
    关于担当
    领导干部要勇于担当
    福布斯专访阿里蔡崇信:马云的坚持和改变
    阿里股权
    ContentProvider
    搞笑段子
    报业
  • 原文地址:https://www.cnblogs.com/Yzzzzzzzzz/p/10945130.html
Copyright © 2011-2022 走看看