<div style="background:url(bg.png)">
<a href="click.php">Click me!</a>
</div>
This should work as desired (empty div solution):
<div style="position:relative">
<div style="position:absolute;top:0;left:0;height:100%;width:100%;background:url(bg.png);"></div>
<a href="click.php">Click me!</a>
</div>
Possibly a "z-index" is needed to be sure to put the link in front of
the background-containing div.
/C#
2008/2/18, rsd <raul...@gmail.com>:
2008/2/18, Christian Jarhult <sva...@gmail.com>: