Skip to content Skip to sidebar Skip to footer

Stange Issue With Image Hover In Chrome

I have an html/css site that uses an effect to magnify images when you hover over them. It works fine, but when using Chrome, it causes the images to jitter and resize on page load

Solution 1:

I was having a similar issue. Found a fix on this site. It's sort of hackish but seems to work. The key is to add a tiny bit of rotation along with the zoom.

.imghover img:hover {
    transform: scale(2) rotate(0.1deg);
}

Post a Comment for "Stange Issue With Image Hover In Chrome"