Hello,
My website is patbrosseau.com
I would like to apply a scale up effect on hover on some of the images I have on my site.
The images are elements inserted in columns.
I found this code:
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
I am trying to apply it to the css on the element but without any success. Essentially, I am looking for the image to slighly “pop up” on hover.
Thank you in advance for your help!
Nathalie