div { width: 100px; height: 100px; background: red; transition: width 2s; } div:hover { width: 300px; } /* width slowly increase to 300px when you hover on div */