Skip to content

Instantly share code, notes, and snippets.

@Golly
Created February 8, 2013 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Golly/4738883 to your computer and use it in GitHub Desktop.
Save Golly/4738883 to your computer and use it in GitHub Desktop.
CSS: Cross browser transitions
/* Firefox */ -moz-transition: all 1s ease; /* WebKit */ -webkit-transition: all 1s ease; /* Opera */ -o-transition: all 1s ease; /* IE */ -ms-transition: all 1s ease; /* Standard */ transition: all 1s ease;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment