Problem:
When applying a CSS transition effect that involves moving a division, Chrome exhibits undesirable behavior such as making the image in the division blurry or displacing it slightly. This issue persists only when the page has scrollbars.
Solution:
To prevent these effects, implement the following CSS changes:
.your-class-name { /* ... */ -webkit-backface-visibility: hidden; -webkit-transform: translateZ(0) scale(1, 1); }
Explanation:
2020 Update:
The above is the detailed content of Why Are My CSS Transitions Making Images Blurry in Chrome?. For more information, please follow other related articles on the PHP Chinese website!