Transition
by Pritam Bohra
HTML
<div class="box"></div>
CSS
.box {
background-color: lightblue;
width: 100px;
height: 100px;
transition: all 2s ease-out .1s;
}
.box:hover {
background-color: lightpink;
width: 120px;
height: 120px;
margin-left: 500px;
}