Skip to content

Instantly share code, notes, and snippets.

@jeffkamo
Created December 4, 2014 18:27
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 jeffkamo/0c96bc9a93a6acea3ddd to your computer and use it in GitHub Desktop.
Save jeffkamo/0c96bc9a93a6acea3ddd to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
/* Bad example...
*
* Remember, your Sass doesn't have to look like your HTML
*/
body {
div {
nav {
ul {
li {
a { // this is ridiculous, and extreme
color: red;
}
}
}
}
}
}
/* Better example
*
* Less specificity, easier to understand, more maintainable
*/
nav a {
color: red;
}
/* Bad example...
*
* Remember, your Sass doesn't have to look like your HTML
*/
body div nav ul li a {
color: red;
}
/* Better example
*
* Less specificity, easier to understand, more maintainable
*/
nav a {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment