Skip to content

Instantly share code, notes, and snippets.

@darren131
Created July 1, 2012 23:51
Show Gist options
  • Save darren131/3030083 to your computer and use it in GitHub Desktop.
Save darren131/3030083 to your computer and use it in GitHub Desktop.
The power of the ampersand
.product {
h1 {
color: #c00;
}
.image {
float: left;
}
.small & {
.image {
float: none;
}
}
}
// makes
.product h1 {
color: #c00;
}
.product .image {
float: left;
}
.small .product .image {
float: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment