CSS3 transition

div {
   width: 100px;
   height: 100px;
   transition: width 2s;
}

div:hover{
   width: 300px;
}