Skip to content

Instantly share code, notes, and snippets.

@RyanRoberts
Created February 7, 2014 10:15
Show Gist options
  • Select an option

  • Save RyanRoberts/8860173 to your computer and use it in GitHub Desktop.

Select an option

Save RyanRoberts/8860173 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
// Eh?
.pageIntro
:first-child
content: blah
// Works
::first-child
content: blah
// Also works
*:first-child
content: blah
.pageIntro {
first-child-content: blah;
}
.pageIntro ::first-child {
content: blah;
}
.pageIntro *:first-child {
content: blah;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment