When page gets any way of movement - window resizing, scrolling, hover, images used as icons does re-render and makes sides ruff, its very well seen on images with transparent background and circular border (like in example), is there any way to fix that? Example
<body>
<style>
body{
background: black;
}
img{
max-width: 5vw;
transition: 1s ease;
}
img:hover{
max-width: 6vw;
}
</style>
<img src="http://www.iconsdb.com/icons/preview/white/whatsapp-xxl.png">
</body>
in this case when hovered, image will appear with sharp borders, some may say pixelated, and after some miliseconds it will go back to smooth borders, here is a fiddle for you - http://jsfiddle.net/o3qk5uaL/