CSS3 Transition Example - Shrink element
HTML
<div class="box1">Shrink</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(0.5);
}
.box1 {
transition-property: all;
transition-duration: 2s
}