Created
May 25, 2013 17:37
-
-
Save chriseppstein/5649985 to your computer and use it in GitHub Desktop.
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
mymodule { | |
@at-root { | |
.#{&}-header { ... } | |
.#{&}-footer { ... } | |
.#{&}-body { | |
a { ... } | |
span { ... } | |
p { ... } | |
} | |
} | |
} |
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
.mymodule-header { ... } | |
.mymodule-footer { ... } | |
.mymodule-body a { ... } | |
.mymodule-body span { ... } | |
.mymodule-body p { ... } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can someone please give another example of how namespacing might be used--thanks @aceofspades, I just would like to see it in another context.