Hello
I have the following html
<a>
<div>
<img src="myimage.gif" alt=" />
</div>
</a>
css
div {width:140px;}
In ie7 the <a> is not clickable if the img is wrapped in a div with a fixed width.
Any solution to this?
It is currently Sat Dec 02, 2017 4:10 pm Advanced search
<a class=link>
<img src="myimage.gif" alt="myimage">
</a>
.link {
display: block;
width:140px;
}
img.example1 {display: block;}
img.example1 {clear: both;}
img.example2 {clear: left;}
img.example3 {clear: right;}
Users browsing this forum: No registered users and 2 guests