Using CSS; is it possible to position a link on top of a given image. For example; I have a main background image for the link board.
"Main1.gif"
Code:
<style type="text/css">
img.x {position:absolute;
left:0px;
top:200px;
z-index:1}
</style>
<table class="three" width="100%" height="48%">
<tr>
<td width="14" height="226"><img class="x" src="images/Main1.gif"></td>
</tr>
</table>
Is it possible to position a link using CSS so I can merely have rollovers on a certain area of the given image? Or will I merely have to Slice the image with every image link given on it and place them using coding?
|