Answers for "how to do a smooth transform scale"

CSS
1

how to do a smooth transform scale

img{
  transition: transform 100ms ease-in-out;
}
img:hover{
  transform: scale(1.1);
}
Posted by: Guest on October-01-2021

Browse Popular Code Answers by Language