<div></div>
div {
  margin: 50px auto;
  width: 150px;
  height: 150px;
  background: black;
  transition-property: background, width;
  transition-timing-function: ease-in-out, ease-out;
  transition-duration: 2s, 1s;
  transition-delay: 1s, 0s;
  
/*   equivalent to this: */
/*   transition: background 2s ease-in-out 1s, width 1s ease-out; */
}
div:hover {
  background: red;
  width: 300px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.