I noticed that when using CSS to resize a lossless png
file (for normal/Retina purposes), on latest Chrome, (54.x at the time of writing), the result is blurry.
When adding the following rule to the img tags
img {
image-rendering: -webkit-optimize-contrast;
}
Then the result is better:
The problem : Safari's engine renders this quite differently (much worse)
My questions
Finally I opted for using srcset to do pure responsive images:
<img
src="./img/logo.png"
srcset="./img/logo.png 1x,
./img/[email protected] 2x"
>