different duration in-out
by DoubleYo
HTML
<div class="box">Lorem Ipsum</div>
CSS
.box{
background: white;
-webkit-transition: background 5s;
}
.box:hover{
background: olive;
-webkit-transition: background 1s;
}
by DoubleYo
<div class="box">Lorem Ipsum</div>
.box{
background: white;
-webkit-transition: background 5s;
}
.box:hover{
background: olive;
-webkit-transition: background 1s;
}