Skip to content

Instantly share code, notes, and snippets.

@sgardn
Created November 14, 2014 21:43
Show Gist options
  • Save sgardn/aea6f9e3d392df1b5036 to your computer and use it in GitHub Desktop.
Save sgardn/aea6f9e3d392df1b5036 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
$blue : blue;
$white : white;
div {
background:blue;
// multiple seletor
&.h1{
color:$white;
}
// parent selector
.h2 & {
color: green;
}
> .h3 {
font-size:12px;
}
}
div {
background: blue;
}
div.h1 {
color: white;
}
.h2 div {
color: green;
}
div > .h3 {
font-size: 12px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment