Created
October 18, 2011 13:11
-
-
Save neilmiddleton/1295384 to your computer and use it in GitHub Desktop.
Wildcard selectors in sass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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