i wanted to hide a link until a user hovers across it and then show it, if you get what i mean?
views:
37answers:
2
+4
A:
CSS visibility
did not work, but this does:
a
{
text-decoration: none;
color: transparent;
}
a:hover
{
color: black;
}
lasseespeholt
2010-08-23 08:56:20
thanks great answer!!!
getaway
2010-08-23 08:59:22
+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.