In other browsers this works, only in IE8 it does not from the ones I tried. In later Browser of internet explorer it works fine.
I have the following code:
CSS:
.imgcontainer {
display: block;
margin: 0 auto;
width: 100px;
height: 100px;
}
.imgcontainer img {
width: 75px;
height: 30px;
}
HTML:
<ul>
<li>
<a href="http://somelink.com">
<div class="imgcontainer">
<img src="img/someimage.png">
</div>
</a>
</li>
</ul>
What happens is the following: Anywhere around the image the link works, but as soon as I click on the image, the link does not respond. It is like the image is placed on top of the link.
Thanks in advance for your help