Skip to content

Instantly share code, notes, and snippets.

@josephok
Created April 15, 2014 01:26
Show Gist options
  • Select an option

  • Save josephok/10694599 to your computer and use it in GitHub Desktop.

Select an option

Save josephok/10694599 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<section id="parent">
<section id="child">
</section>
</section>
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
#parent {
width: 200px;
height: 200px;
background-color: black;
position: relative;
}
#parent #child {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
top: 0;
right: 0;
}
#parent {
width: 200px;
height: 200px;
background-color: black;
position: relative;
}
#parent #child {
width: 100px;
height: 100px;
background-color: red;
position: absolute;
top: 0;
right: 0;
}
<section id="parent">
<section id="child">
</section>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment