CSS > Transiciones

by academiax

HTML

<button>Click</button>

CSS

body {
  margin: 0;
}

button {
  height: 50px;
  width: 200px;
  background: red;
  transition: background 3s ease 0.5s;
}

button:hover {
  background: blue;
}