Skip to content

Instantly share code, notes, and snippets.

@jhough10
Created June 1, 2014 06:59
Show Gist options
  • Save jhough10/ad4fc9635400420009bd to your computer and use it in GitHub Desktop.
Save jhough10/ad4fc9635400420009bd to your computer and use it in GitHub Desktop.
BEM Sass Method
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
=e($name)
@at-root &_#{$name}
@content
=m($name)
@at-root &-#{$name}
@content
.block
color: red
+e(element)
color: green
+m(modifier)
color: blue
.block {
color: red;
}
.block_element {
color: green;
}
.block_element-modifier {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment