zoom into an image css code example
Example 1: zoom level in css
.zoom {
zoom: 150%;
}
Example 2: how to use image zoom effect in css
.parent:hover .child,
.parent:focus .child {
transform: scale(1.2);
}
.zoom {
zoom: 150%;
}
.parent:hover .child,
.parent:focus .child {
transform: scale(1.2);
}