On hover I wish to scale anything in the a tag, including an image.
I use:
a:hover{
transform: scale(1.05);
}
And this works, but then when the animation ends, the image snaps back to it's original size. I need it to stay large until the hover goes out.
Please note I cannot apply the animation to the image itself because I also need to animate whatever is inside the a tag.