Skip to content

Instantly share code, notes, and snippets.

@nicolechung
Created August 18, 2014 17:42
Show Gist options
  • Save nicolechung/366fd7df07fd374dc2c9 to your computer and use it in GitHub Desktop.
Save nicolechung/366fd7df07fd374dc2c9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v2.0.0)
// ----
/* Good nesting: only three levels deep */
.foo {
.bar {
.baz {
color: red;
}
}
}
/* Bad nesting: more than three levels deep */
.foo {
.bar {
.baz {
.fiz {
.buzz {
.duh {
color: red;
}
}
}
}
}
}
/* Good nesting: only three levels deep */
.foo .bar .baz {
color: red; }
/* Bad nesting: more than three levels deep */
.foo .bar .baz .fiz .buzz .duh {
color: red; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment