CSS: Grow element size when mouse hover

PHOTO EMBED

Mon Aug 29 2022 17:19:09 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #css

.grow { 
  transition: all .2s ease-in-out; 
}
.grow:hover { 
  transform: scale(1.1); 
}
content_copyCOPY