Skip to content

Instantly share code, notes, and snippets.

@darrylhein
Last active August 29, 2015 14:10
Show Gist options
  • Save darrylhein/1359668884d956f29ee5 to your computer and use it in GitHub Desktop.
Save darrylhein/1359668884d956f29ee5 to your computer and use it in GitHub Desktop.
SASS nesting
h1 {
strong { color: #f00; }
&:before { background: #0f0; }
}
// would result in
h1 strong { color: #f00; }
h1:before { background: #0f0; }
// what I think you had:
h1 {
....
}
strong { color: #f00; }
&:before { background: #0f0; }
// would result in ka-boom!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment