Skip to content

Instantly share code, notes, and snippets.

@brunomonteiro3
Created May 13, 2016 12:47
Show Gist options
  • Save brunomonteiro3/37e20f2238349a6210964f279e11029e to your computer and use it in GitHub Desktop.
Save brunomonteiro3/37e20f2238349a6210964f279e11029e to your computer and use it in GitHub Desktop.
CSS Transition snippet
#element{
-webkit-transition: all 350ms ease;
-moz-transition: all 350ms ease;
-o-transition: all 350ms ease;
transition: all 350ms ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment