I use the following css to display a 661px x 343px image:
width: 95px; height:auto;
I found that using the following CSS will give the same blur in Chrome:
image-rendering:-webkit-optimize-contrast;
Thus, deleting the above makes the image sharper in chrome, any idea how to fix the problem for other browsers?
source
share