Hi all,
I've made some images as separate backgrounds for links. These backgrounds sit in a span tag, and the links sit in their anchor tags with in each separate corresponding span tag, however when viewing the page the anchor tags appear to be outside of the span tags . . . . why?
Code:
<div id="nav">
<span style="background:url('button1bg.png') no-repeat 0 0;">
<a href="mylink.php">My Link</a>
</span>
<span style="background:url('button2bg.png') no-repeat 0 0;">
<a href="mylink2.php">My Link</a>
</span>
</div>
Thats not exactly it but basically what I'm trying to describe.
Cheers