CSS3 Transition Example - Grow element

by VIvek Vaishnav

HTML

<div class="box1">Grow</div>

CSS

.box1 {
  padding: 70px;
  margin: 5px;
  background: #c5e1a5;
  width: 100px;
  text-align: center;
  font-size: 2.5em;
  font-weight: 900
}
.box1:hover {
  transform: scale(1.3);
}
.box1 {
  transition-property: all;
  transition-duration: 2s
}