Scale in css

Scale in css

 

.box {
  transition: transform 0.3s ease-in-out;
}

.box:hover {
  transform: scale(1.2);
}

Leave a Reply