Skip to content

Instantly share code, notes, and snippets.

@omurphy27
Created February 25, 2013 01:32
Show Gist options
  • Save omurphy27/5026755 to your computer and use it in GitHub Desktop.
Save omurphy27/5026755 to your computer and use it in GitHub Desktop.
CSS transition all w browser prefixes
/* CSS transition all with ease example */
.container:hover {
box-shadow: 0 1px 6px 4px rgba(0, 0, 0, 0.3);
-webkit-transition: all 800ms ease;
-moz-transition: all 800ms ease;
-o-transition: all 800ms ease;
-ms-transition: all 800ms ease;
transition: all 800ms ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment