Skip to content

Instantly share code, notes, and snippets.

@devbyray
Last active August 29, 2015 14:12
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 devbyray/3ee20599944c10a59cef to your computer and use it in GitHub Desktop.
Save devbyray/3ee20599944c10a59cef to your computer and use it in GitHub Desktop.
Sass placeholder class
.container {
/**
**This is an placeholder class
**/
display: block;
margin-left: auto;
margin-right: auto;
}
.center, .container {
/**
** This is not an placeholder class
**/
text-align: center;
}
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
%center {
/**
**This is an placeholder class
**/
display: block;
margin-left: auto;
margin-right: auto;
}
.center {
/**
** This is not an placeholder class
**/
text-align: center;
}
.container {
@extend %center;
@extend .center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment