hover text on a link

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • developerquery
    New Member
    • Jun 2012
    • 17

    hover text on a link

    How do I give the same hover effect like on


    On the word newsletter
    I did this but its not up to the mark.
    Code:
    a:hover
    {
        background-color:pink;    
    }
    
    <div>Email <a href="http://www.google.com" style="text-decoration:none"><span style="color:pink" >newsletters</span></a>  are hotter than ever</div>
    Last edited by acoder; Feb 8 '13, 01:18 PM. Reason: Please use [code] tags when posting code
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    They use javascript to do that. You can't do it with just CSS and HTML.

    Comment

    Working...