Forum Moderators: not2easy
CSS:
a{width:100px;display:block;text-decoration:none;}
a:link{background:#000 url(off.gif);color:transparent;}
a:hover{background:#000 url(on.gif);color:transparent;}
html:
<p><a href="#" title="click here to find out how to reach us"> </a></p>
Assume the link image is 100 px wide. It works on IE and Mozilla. It has a title attribut. Even users of text only browser should be able to find out what that link does, although it's a .
One could even have a a:visited with a different background-image to make clear that link has already been followed. Same goes for a:active.
I don't like my own idea too much, but... what do you think?
Couple of points without testing:
Other than that, looks like a nice job and that you're enjoying the whole css trip ;)
Nick