Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created April 27, 2012 06:47
Show Gist options
  • Save rpearce/2506692 to your computer and use it in GitHub Desktop.
Save rpearce/2506692 to your computer and use it in GitHub Desktop.
SASS selector inheritance example1
.ease-in-out {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
#logo-container {
@extend .ease-in-out;
float: left; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment