I am making the opacity transition to the img element, as it is here, and I see that the size of img changes or img moves when the transition ends or begins;
Here is simple CSS for the style.
img{
height:165px;
width:165px;
opacity:0.4;
transition: all linear 1s;
}
img:hover{
opacity:1;
}
I tested this on Chrome version 31. How can I get rid of this problem?
Change: this problem appears when the Chrome browser has a larger scale, for example, 110% or 125%
source
share