<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <h3>transition-delay</h3>
  <div>0s</div>
  <div>1s</div>
  <div>3s</div>
</body>
</html>
div {
  font: bold 16px/50px "Open Sans";
  color: white;
  text-align: center;
  width: 100px;
  height: 50px;
  background-color: green;
  margin-bottom: 10px;
  transition: width 1s;
}
div:nth-of-type(1) {
  transition-delay: 0s;
}
div:nth-of-type(2) {
  transition-delay: 1s;
}
div:nth-of-type(3) {
  transition-delay: 3s;
}
div:hover {
  width: 300px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.