zoukankan      html  css  js  c++  java
  • CSS样式渐变写法

    .first_tree li:hover{ color:#FFF; cursor:pointer;
    background-color:#ff8a00;
    background: -ms-linear-gradient(top, #ff8a00 0, #ff8a00 100%);
    background: -webkit-linear-gradient(top, #ff8a00 0, #ff8a00 100%);
    background: -moz-linear-gradient(top, #ff8a00 0, #ff8a00 100%);
    background: -o-linear-gradient(top, #ff8a00 0, #ff8a00 100%);
    background: linear-gradient(to bottom, #ff8a00 0, #ff8a00 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff8a00, endColorstr=#ff8a00, GradientType=0);}

  • 相关阅读:
    多进程
    NoSQL-memcached相关
    NoSQL-redis相关
    DB相关复习
    算法
    SQLAlchemy
    Mysql相关
    Python DB-API
    正则习题
    python的正则——re模块
  • 原文地址:https://www.cnblogs.com/smght/p/4775039.html
Copyright © 2011-2022 走看看