Here is a code snippet that appears to be functional, however, the is not being displayed:
<a class='linkz' href="#">
<span style='display:none;'>span </span>
link
</a>
.linkz:hover span
{
display:block;
}
I would like the span to become visible when hovering over the link. What could be causing it to fail? Is there an issue with the CSS(2) syntax?