Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Created January 28, 2013 15:47
Show Gist options
  • Select an option

  • Save blackfalcon/4656613 to your computer and use it in GitHub Desktop.

Select an option

Save blackfalcon/4656613 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
// Sass v3.2.5
parent
background: orange
@supports ((perspective: 10px) or (-moz-perspective: 10px))
child
background: blue
// Sass v3.2.5
parent {
background: orange;
@supports ((perspective: 10px) or (-moz-perspective: 10px)) {
child {
background: blue;
}
}
}
parent {
background: orange;
@supports ((perspective: 10px) or (-moz-perspective: 10px)) {
child {
background: blue;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment