Skip to content

Instantly share code, notes, and snippets.

@neilmiddleton
Created October 18, 2011 13:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilmiddleton/1295384 to your computer and use it in GitHub Desktop.
Save neilmiddleton/1295384 to your computer and use it in GitHub Desktop.
Wildcard selectors in sass
To produce:
.blah[class*='span'] {
text-align: center;
}
use:
.blah
&[class*='span']
text-align: center
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment