I have a dynamically generated set of images (with a comment near every image). I want to display every image with max-width and max-height of 48 px, but when the user is ho
https://jsfiddle.net/dafemtg1/
FYI, CSS using the transform property:
img{transition:all 0.2s;} img:hover {transform:scale(1.4);transition:all 0.2s;}