hover css zoom code example
Example 1: zoom image css
<style>
.zoom {
padding: 50px;
background-color: green;
transition: transform .2s;
width: 200px;
height: 200px;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
}
</style>
<div class="zoom"></div>
Example 2: on hover zoom card
transform: scale(1.5);
Example 3: how to use image zoom effect in css
.parent:hover .child,
.parent:focus .child {
transform: scale(1.2);
}
Example 4: html zoom text on hover
<style>
#test-text:hover {
font-size: 40px;
}
</style>
<body>
<p id=test-text>TEST</p>
</body>