zoukankan      html  css  js  c++  java
  • css hack兼容写法

        #test  
        {  
            300px;  
            height:300px;  
            color:red !important;/* Firefox、IE7支持 */
            background-color:blue;      /*firefox*/
            background-color:red\9;      /*all ie*/
            background-color:yellow\0;    /*ie8*/
            +background-color:pink;        /*ie7*/
            _background-color:orange;       /*ie6*/
        } 
        :root #test { background-color:purple\9; }  /*ie9*/
        @media all and (min-0px){ #test {background-color:black\0;} }  /*opera*/
        @media screen and (-webkit-min-device-pixel-ratio:0){ #test {background-color:gray;} }  /*chrome and safari*/
     body:nth-of-type(1) p{color:red;} /* Chrome、Safari支持 */

  • 相关阅读:
    总结-hexo部署
    core bluetooth详细介绍
    uitextFiled字数输入限制
    UIAlertAction 改变字体颜色
    iOS 10 获取相册相机权限
    选中某个单元格
    内购
    延迟执行
    GCD
    制作静态库
  • 原文地址:https://www.cnblogs.com/zgzy/p/csshack.html
Copyright © 2011-2022 走看看