zoom on hover css
html
css .zoom { background-color: white; box-shadow: 0 0 10px rgb(0 0 0 / 10%); border-radius: 10px; transition: transform .9s; width: 200px; height: 200px; margin: 0 auto; } .zoom:hover { -ms-transform: scale(1.2); /* IE 9 */ -webkit-transform: scale(1.2); /* Safari 3-8 */ transform: scale(1.2); }
css
js