Link Text Question

Discussion in 'HTML & Website Design' started by rayner-x, Mar 14, 2007.

  1. #1
    Hi, this sounds very simple. Could you give the code for blinking texts when you mouse over on it?
     
    rayner-x, Mar 14, 2007 IP
  2. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #2
    Use the following (keep in mind that while Mozilla supports this, IE does not)
    
    <head>
    <style type="text/css">
    a:hover {
     text-decoration: blink;
    }
    </style>
    </head>
    
    <body>
    <a href="somelink">link</a>
    ......
    Code (markup):
     
    Clive, Mar 14, 2007 IP
  3. jgjg

    jgjg Peon

    Messages:
    595
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #3
    yeah css. doesn't work in some i.e. browsers I think though
     
    jgjg, Mar 15, 2007 IP
  4. Clive

    Clive Web Developer

    Messages:
    4,507
    Likes Received:
    297
    Best Answers:
    0
    Trophy Points:
    250
    #4
    It's a known fact that it doesn't work in IE at all. Not even IE7 supports text blinking.
     
    Clive, Mar 15, 2007 IP