Answers for "css zoom hover effect"

CSS
0

How to zoom picture on hover using css

.img:hover{
transform:scale(1.0);
}
Posted by: Guest on January-25-2022
8

on hover zoom card

transform: scale(1.5);
Posted by: Guest on July-16-2020
2

how to use image zoom effect in css

.parent:hover .child,
.parent:focus .child {
  transform: scale(1.2);
}
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language