Need CSS3 Hover Effects

Discussion in 'CSS' started by foresightseo, Sep 26, 2013.

  1. #1
    i need Hover Effects for like this website vinodkumarv.com/demo10 please check AGRO Box Hover i have tried many time not coming properly , can u any one please let me Css Codeing
     
    foresightseo, Sep 26, 2013 IP
  2. imjava

    imjava Greenhorn

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    11
    #2
    The link not open for me
     
    imjava, Sep 26, 2013 IP
  3. xXxpert

    xXxpert Well-Known Member

    Messages:
    604
    Likes Received:
    34
    Best Answers:
    9
    Trophy Points:
    165
    Digital Goods:
    7
    #3
    This is what you are looking for

    
    .box {
       position:relative;
       z-index:10000;
       background:#030;
       width:200px;
       height:200px;
       padding:10px;
    }
    .box:hover {
       border: 10px solid rgba(255, 255, 255, 0.5);
      -webkit-background-clip: padding-box; /* for Safari */
      background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
       position:relative;
       z-index:99999;
    }
    
    
    Code (markup):
     
    xXxpert, Sep 26, 2013 IP
  4. foresightseo

    foresightseo Greenhorn

    Messages:
    30
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    18
    #4
    its working
     
    foresightseo, Oct 1, 2013 IP
  5. foresightseo

    foresightseo Greenhorn

    Messages:
    30
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    18
    #5
    its nice i have downloaded total theme thanks for helping
     
    foresightseo, Oct 1, 2013 IP