css hover make image bigger code example
Example: increase the size of an image on hover using css
img {
transition: all .2s ease-in-out;
}
img:hover {
transform: scale(1.5);
}
img {
transition: all .2s ease-in-out;
}
img:hover {
transform: scale(1.5);
}