Created
February 25, 2013 01:32
-
-
Save omurphy27/5026755 to your computer and use it in GitHub Desktop.
CSS transition all w browser prefixes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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