Aumente o tamanho de uma imagem no pau usando CSS
img {
transition: all .2s ease-in-out;
}
img:hover {
transform: scale(1.5);
}
Yeomeo
img {
transition: all .2s ease-in-out;
}
img:hover {
transform: scale(1.5);
}
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
}