Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 30, 2014 14:53
Show Gist options
  • Save jpcontrerasv/de8de4dcf8482dc071ad to your computer and use it in GitHub Desktop.
Save jpcontrerasv/de8de4dcf8482dc071ad to your computer and use it in GitHub Desktop.
Transición color Background
div {
transition: background-color 0.5s ease;
background-color: red;
}
div:hover {
background-color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment