Blog

Life's better with BEM

Guide

Utilising the BEM style methodology for clean architecture an maintainability gains 💪

Old Article

This content may be out of date or broken, please take care.

I plan to write a bit of a series of methodologies and processes I use with styles. The first methodology is the Block Element Modifier (BEM) style methodology. Before I get onto the that, I want to be upfront and say there are many methodologies out there. BEM is my teams' favourite and it works for us. I'll list a load of other methodologies towards the end if you're interested in comparing them.

What is BEM?

BEM is a naming convention for your styles. There isn't any more to it than that in terms of what you need to do, but it should get you to think more about how you write your styles. From this thinking, you will naturally find your CSS becomes cleaner and easier to maintain. BEM can be used with CSS, SASS, LESS - anything, so don't limit your dreams!

The premise for BEM is that your pages should be made up of independent components. Each piece of UI should work in isolation to any other. Examples of UI blocks might be:

  • buttons
  • cards
  • headers
  • lists

I always say CSS is easy to learn and hard to master. This is why: it's easy for me to list them components because I am not there with you now to see what you're trying to categorize and I find this is the root of all styling problems. Just knowing what is its own independent component. So a good exercise before using BEM is looking around sites just trying your best to identify bits of shared UI - it will carry you miles.

 

Really though, what is BEM?

Got your UI components in mind? Cool. Let's use a simple example.

 

I've knocked up some markup for a simple product. Little by little, we'll work through the example bit by bit.

 

Blocks

The obvious choice here is .product, but that isn't the only one. We can also create one for the button. I've done this on purpose, because

[A block] Encapsulates a standalone entity that is meaningful on its own

A button isn't specific to the product, we could have a button anywhere on our website. We can quite happily put blocks inside other blocks but blocks cannot have any dependency on another block. A good rule of thumb, if tomorrow you deleted that block, nothing else would change! So with our two blocks in mind, I'm going to add them to our styles. I'll use SASS here because I'm going to show something cool later. 😎

 

Some examples of blocks might be:

  • buttons
  • lists
  • cards
  • header
  • footer

Now that we have identified our standalone components, it's time to get them sleeves rolled up.

 

Elements

The bulk of your styles will invariably end up as elements, which are dependent on blocks.

[Elements are] Parts of a block and have no standalone meaning.

An element is defined by two underscores after the block name. So for our product title, we could have .product__title which denotes this title element is part of the .product block. As the buttons in the example don't have anything to them, we'll keep them as a block. So now we add the elements to our product block.

 

Here you can a little SASS trick that works so well with BEM. I'll touch on that later.

Examples of elements could be anything, just as long as it pertains to its own block.

 

Modifiers

Blocks and elements build our baselines. Everything should look relatively ok with just blocks and elements. Sometimes though, we need to take other things into account like element state, or themes. A good example would be: how would you show a price was discounted? We would break DRY principles if we wrote how a price looked all over again. Modifiers just the thing for this situation.

[Modifiers are] Flags on blocks or elements. Use them to change appearance, behavior or state.

Note here, that they can be used on both blocks and elements. We can define a modifier by two dashes, so say we want a discount variant of our price we might write .product__price--discount. Here we're saying we have created a variant of the price element which is an element of the product block. Here the true power of BEM comes to live, with three simple names we can clear show the purpose of a component.

In the next stages, I will add a discount to the price and update the buttons to be different colours.

 

Notice I still keep the block or element name associated with a modifier. This is crucial, because if you don't do it - what are you actually modifying?

Some examples of when you use modifiers would be:

  • button themes - i.e. bootstraps danger, success, warning etc.
  • transition states - open, closed, faded etc.
  • general states - active, inactive etc.

 

Full Example

I've added in some styles to give this example more character. It's still the same HTML from the first step, just will classes.

 

 

Benefits

BEM is really powerful, especially when it's used with the SASS tools. I've written a fully flexible version of BEM here, which demonstrates the combination. Should a name change, we only have to update HTML and one place in the SASS.

We get the readability benefits of nesting, but none of the specificity problems. The output CSS is flat.

I always put one block per file. This further goes to help with the flexibility of turning features on and off at the removal or addition of an import. This also feeds back into what I said earlier with blocks. They should be so standalone, you can delete a file without affecting any other CSS.

In a work environment, we're able to place people on code they have never seen before and they hit the ground running with BEM - which is a huge benefit in itself. There is no more search through lines and lines of CSS to find something, you simply use the HTML as a reference.

BEM is easy to use, but it relies heavily on knowing what components are stand alone and what is not. The other criticisms I've heard of BEM has been searchability. Especially when you nest things with SASS. I'd personally feel this isn't a problem, but I'll let the dear reader form your own opinions.

 

Further Reading

This is my take on BEM and SASS, before you plough into rearchitecting your styles it's best to get familiar with identifying UI components that are stand alone. This comes with practice. Here's more information:

BEM isn't the only methodology out there, some methodologies work better for certain project types. Here are some more you can check out:

I would love to hear thought from anyone working with BEM and the others.

 

Comments