HTML
CSS
JS
Result
HTML
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title> To Zoom an Image on Mouse Hover using CSS </title> </head> <body> <div class="img-div"> <img src="https://www.w3coderschool.com/attachments/file_1729864290.png" alt="w3coderschool Image" /> </div> </body> </html>
CSS
body { text-align: center; } .img-div img:hover { zoom: 1.2; }
JS
Zoom an image on mouse hover by using CSS zoom property