Image Hover Scale

Use transform to scale images on hover.

Preview

Code

<style>
img{
width:140px;
transition:transform 0.3s;
}

img:hover{
transform:scale(1.1);
}
</style>

<img src="https://via.placeholder.com/140">

More CSS Image Styling Examples (8)