tags:

views:

37

answers:

2

i wanted to hide a link until a user hovers across it and then show it, if you get what i mean?

+4  A: 

CSS visibility did not work, but this does:

a
{
    text-decoration: none;
    color: transparent;
}

a:hover
{
    color: black;
}
lasseespeholt
thanks great answer!!!
getaway
+1  A: 

HTML:

<div class="hidden"><a href="blah">I can't see this</a></div>

CSS:

    .hidden 
    {
        width:100px;
        height:100px;
        border:1px solid black;
    }
    .hidden a{
        display: none;
    }
    .hidden:hover a{
        display:block;
    }

But, it is not very 'accessible'

EDITED after doing a test.

Not very accessible and it doesn't work.
Darin Dimitrov