Writing in BEM using LESS
There’s CSS methodologies to help use write such as SMACSS or Atomic, one we’re going to look at today is Block Element Module
Overview
This is something I found myself thinking about when using the Block Element Module (BEM) methodology when coding using the preprocessor LESS.
I like this for the follow reasons:
- Less repeating code
- Ability to change the block name and auto cascade to the element descendants
- Less lines and easier to read
The Code
block {
&__element {
&--modifier-alpha {
color: blue;
}
&--modifier--beta {
color: green;
}
}
}
So the compiled elements would look like this:
block__element--modifier-alpha {
color: blue;
}
block__element--modifier-beta {
color: green;
}