placing image as div background
- by Lucka
How can I place only an image in a div as background image, and add url link to it.
Currenty I'm doing it this way:
<div class="image"><a href="example.com"><img src="books.png" alt="Test" /></a></div>
I want to do something like following, but its not working (the image does not appear).
<div class="image"><a href="example.com"><span class="books"></span></a></div>
Thanks.