Why does the same image look perfect in Mozilla but imperfect in Chrome? Here are the images. Can anyone suggest why these types of bugs occur and how to solve them?
The first is displayed in Mozilla and the second in Chrome.
Here is the CSS Code,
.freeimg
{
position : relative;
top : 80px;
border : 1px solid #CCCCCC;
border-right : 0;
background-color : #FFF;
cursor : pointer;
margin-left : -35px;
-moz-border-radius : 10px 0px 0px 10px;
}
The HTML Code is standard as usual.
<div class="fl freeimg" style="float:left;">
<img src="/images/freeImg.gif" height="160" width="32" onClick="SlideMe()" />
</div>