Example: [ (check out the Customize Your Own section featuring four Batman images)
I've encountered an issue where the background-size is not smoothly transitioning. Instead of a gradual change, it jumps from one size to another abruptly.
div {
background-size: 100%;
transition: all 0.2s ease;
}
div:hover, div:focus {
background-size: 115% 115%;
}
Why is the transition effect not functioning as expected? This problem persists across Chrome, Safari, and Firefox browsers.