Results 1 to 2 of 2

Thread: change box color on hover

  1. #1
    Join Date
    Feb 2010
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default change box color on hover

    Hi

    How can we change box color on hover like yahoo.com

    http://www.yahoo.com/

    see in Today news. box color will change on hover.

    any idea??

    thank you

  2. #2
    Join Date
    Jul 2008
    Location
    Serbia
    Posts
    47
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    html
    Code:
    <div class="ch_color">
    your content goes hire
    </div>
    css
    Code:
    .ch_color { background-color: #ddd;}
    
    .ch_color:hover { background-color: #333;}
    
    image hover
    .ch_color:hover { background: url('../your/image/path/hire.png');}

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •