Skip to content

Instantly share code, notes, and snippets.

@rcaracaus
Created February 3, 2015 00:34
Show Gist options
  • Save rcaracaus/b84c1fd9771f89c3c9bc to your computer and use it in GitHub Desktop.
Save rcaracaus/b84c1fd9771f89c3c9bc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="featured-palette-parent">
<div class="">asdf</div>
</div>
<div class="">
<div class="featured-palette-child">asdf</div>
</div>
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
.featured-palette-parent {
> :nth-child(1) {
background: red;
}
}
.featured-palette-child {
&:nth-child(1) {
background: blue;
}
}
.featured-palette-parent > :nth-child(1) {
background: red;
}
.featured-palette-child:nth-child(1) {
background: blue;
}
<div class="featured-palette-parent">
<div class="">asdf</div>
</div>
<div class="">
<div class="featured-palette-child">asdf</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment