Skip to content

Instantly share code, notes, and snippets.

@ZeeCoder
Last active October 22, 2017 15:41
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 ZeeCoder/3abb6bd141a7b435ed9f623c7d104104 to your computer and use it in GitHub Desktop.
Save ZeeCoder/3abb6bd141a7b435ed9f623c7d104104 to your computer and use it in GitHub Desktop.
BEM syntax guideline for LESS
.block {
@b: ~'.block';
&__element {
// ...
}
&--modifier {
// ...
&_val1 {
// ...
}
&_val2 {
// ...
}
}
&--bigmod {
// ...
@{b} {
&__element {
// ...
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment