Naming

There are only two hard problems in Computer Science: cache invalidation and naming things — Phil Karlton

It is a known fact that the right styleguide can significantly increase development speed, debugging, and the implementation of new features in legacy code. Sadly, most CSS codebases are sometimes developed without any structure or naming conventions. This leads to an unmaintainable CSS codebase in the long term.

The BEM approach ensures that everyone who participates in the development of a website works with a single codebase and speaks the same language. Using proper naming will prepare you for the changes in design of the website.

Block

Encapsulates a standalone entity that is meaningful on its own. While blocks can be nested and interact with each other, semantically they remain equal; there is no precedence or hierarchy. Holistic entities without DOM representation (such as controllers or models) can be blocks as well.

NamingHTMLCSS
Block names may consist of lowecase Latin letters, digits, and dashes. To form a CSS class, add a short prefix for namespacing: .block. Spaces in long block names are replaced by dash.Any DOM node can be a block if it accepts a class name. <div class="block">...</div>Use class name selector only. No tag name or ids. No dependency on other blocks/elements on a page. .block { color: #042; }

Element

Parts of a block and have no standalone meaning. Any element is semantically tied to its block.

NamingHTMLCSS
Element names may consist of lowecase Latin letters, digits, dashes and underscores. CSS class is formed as block name plus two underscores plus element name: .block__elem. Spaces in long element names are replaced by dash.Any DOM node within a block can be an element. Within a given block, all elements are semantically equal.<div class="block"><span class="block__elem"></span></div>

Good

.block__elem { color: #042; }

Bad

.block .block__elem { color: #042; }
div.block__elem { color: #042; }

Modifier

Flags on blocks or elements. Use them to change appearance, behavior or state.

NamingHTMLCSS
Modifier names may consist of lowecase Latin letters, digits, dashes and underscores. CSS class is formed as block’s or element’s name plus two dashes: .block--mod or .block__elem--mod and .block--color-black with .block--color-red. Spaces in complicated modifiers are replaced by dash.Modifier is an extra class name which you add to a block/element DOM node. Add modifier classes only to blocks/elements they modify, and keep the original class.Use modifier class name as selector: .block--hidden { } To alter elements based on a block-level modifier: .block--mod .block__elem { } Element modifier: .block__elem--mod { }

Good

<div class="block block--mod">...</div>
<div class="block block--size-big block--shadow-yes">...</div>

Bad

<div class="block--mod">...</div>

Example

Suppose you have block form with modifiers theme: "xmas" and simple: true and with elements input and submit, and element submit with its own modifier disabled: true for not submitting form while it is not filled:

HTML

<form class="form form--theme-xmas form--simple">
  <input class="form__input" type="text" />
  <input
    class="form__submit form__submit--disabled"
    type="submit" />
</form>

CSS

.form { }
.form--theme-xmas { }
.form--simple { }
.form__input { }
.form__submit { }
.form__submit--disabled { }