search
HomeWeb Front-endCSS TutorialWhat is the BEM naming convention in CSS?

What is the BEM naming convention in CSS?

Sep 10, 2018 pm 04:00 PM
cssNaming conventions

This chapter brings you what is the BEM naming convention in CSS? , has certain reference value, friends in need can refer to it, I hope it will be helpful to you.

1 What is the BEM naming convention

Bem is the abbreviation for block, element, and modifier. It is a front-end CSS naming methodology proposed by the Yandex team.

- Dash: Used only as a hyphen to represent a connection mark between multiple words of a block or a sub-element.
__Double underline: Double underline is used to connect blocks and sub-elements of the block
_ Single underscore: A single underscore is used to describe a state of a block or a sub-element of a block

BEM is a simple and very useful naming convention. Make your front-end code easier to read and understand, easier to collaborate with, easier to control, more robust and unambiguous, and more rigorous.

1. BEM naming pattern

The BEM naming convention pattern is:

.block {}
.block__element {}
.block--modifier {}

Each block (block) name should have a namespace (prefix)
Block represents a higher level abstraction or component.
block__element represents the descendants of .block and is used to form a complete .block as a whole.
block--modifier represents different states or different versions of .block

Use two hyphens and underscores instead of one so that your own blocks can be delimited with a single hyphen . Such as:

.sub-block__element {}
.sub-block--modifier {}

2. The benefits of BEM nomenclature

The key to BEM is that you can get more descriptions and a clearer structure, and you can know the meaning of a certain mark from its name. Therefore, by looking at the class attribute in the HTML code, you can know the relationship between elements.

Conventional nomenclature example:

<div class="article">
    <div class="body">
        <button class="button-primary"></button>
        <button class="button-success"></button>
    </div>
</div>

This way of writing can understand the meaning of each element from the DOM structure and class naming, but it cannot clarify its true hierarchical relationship. When defining CSS, you must also rely on hierarchical selectors to limit the constraint scope to avoid cross-component style pollution.

Examples using the BEM naming method:

<div class="article">
    <div class="article__body">
        <div class="tag"></div>
        <button class="article__button--primary"></button>
        <button class="article__button--success"></button>
    </div>
</div>

Through the BEM naming method, the module hierarchical relationship is simple and clear, and there is no need to make too many hierarchical choices when writing css.

2. How to use BEM nomenclature

1. When should you use BEM format

The trick to using BEM is , you need to know when and what should be written in BEM format. Not every place should use BEM naming. The BEM format should be used when explicit module relationships are required. For example, if there is just a single public style, there is no point in using the BEM format:

.hide {    display: none !important;}

2. Using the BEM format in the CSS preprocessor

One disadvantage of BEM is the naming method It is long, ugly and poorly written. Compared with the convenience brought by the BEM format, we should look at it objectively. Moreover, CSS is generally written using preprocessor languages ​​such as LESS/SASS, and it is much simpler to write using its language features.

Take LESS as an example:

.article {
    max-width: 1200px;
    &__body {
        padding: 20px;
    }
    &__button {
        padding: 5px 8px;
        &--primary {background: blue;}
        &--success {background: green;}
    }
}

3 Using BEM format in components of popular frameworks
In the currently popular front-end frameworks such as Vue.js / React / `Angular, there are compilation implementations of CSS component-level scope. The basic principle is to use the CSS attribute selector feature to generate different attribute selectors for different components. .
When you choose this local scope approach, the BEM format may seem less important in smaller components. However, for public and global module style definitions, it is still recommended to use the BEM format.
In addition, for public components released to the outside world, generally for the sake of style customization, this local scope method is not used to define component styles. This is where using the BEM format will also come in handy.

4 Avoid the .block__el1__el2 format
In deeply nested DOM
structure, overly long style name definitions should be avoided.
The final level should not exceed level 4, otherwise it will increase the difficulty of reading comprehension

3. Summary

One of the most difficult parts of BEM It is clear where the scope starts and ends, and when to use it or not to use it. As you accumulate experience with continuous use, you will slowly know how to use it, and these problems will no longer be a problem. There is no good or bad technology, only the right one is best.

Recommended writing and style

//常规写法:
.xxx{}
.xxx__item{}
.xxx__item_current{}

// 嵌套写法
.xxx__item_current .mod-xxx__link{}

推荐:
.xxx{}
.xxx__item{}
.xxx__item_hightlight{}
.xxx__product-name{}
.xxx__link{}
.xxx__ming-zi-ke-yi-hen-chang{}

// 嵌套写法
.xxx__item_current{
    .xxx__link{}
}

//对应的HTML结构如下:

<ul class="xxx">

	<li class="xxx__item">第一项

		<div class="xxx__product-name">我是名称</div>

		<span class="xxx__ming-zi-ke-yi-hen-chang">看类名</span>

		<a href="#" class="xxx__link">我是link</a>

	</li>

	<li class="xxx__item xxx__item_current">第二项 且 当前选择项

		<div class="xxx__product-name">我是名称</div>

		<a href="#" class="xxx__item-link">我是link</a>

	</li>

	<li class="xxx__item xxx__item_hightlight">第三项 且 特殊高亮

		<div class="xxx__product-name">我是名称</div>

		<a href="#" class="xxx__item-link">我是link</a>

	</li>
</ul>






##

The above is the detailed content of What is the BEM naming convention in CSS?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Lost CSS Tricks of Cohost.orgThe Lost CSS Tricks of Cohost.orgApr 25, 2025 am 09:51 AM

In this post, Blackle Mori shows you a few of the hacks found while trying to push the limits of Cohost’s HTML support. Use these if you dare, lest you too get labelled a CSS criminal.

Next Level CSS Styling for CursorsNext Level CSS Styling for CursorsApr 23, 2025 am 11:04 AM

Custom cursors with CSS are great, but we can take things to the next level with JavaScript. Using JavaScript, we can transition between cursor states, place dynamic text within the cursor, apply complex animations, and apply filters.

Worlds Collide: Keyframe Collision Detection Using Style QueriesWorlds Collide: Keyframe Collision Detection Using Style QueriesApr 23, 2025 am 10:42 AM

Interactive CSS animations with elements ricocheting off each other seem more plausible in 2025. While it’s unnecessary to implement Pong in CSS, the increasing flexibility and power of CSS reinforce Lee's suspicion that one day it will be a

Using CSS backdrop-filter for UI EffectsUsing CSS backdrop-filter for UI EffectsApr 23, 2025 am 10:20 AM

Tips and tricks on utilizing the CSS backdrop-filter property to style user interfaces. You’ll learn how to layer backdrop filters among multiple elements, and integrate them with other CSS graphical effects to create elaborate designs.

SMIL on?SMIL on?Apr 23, 2025 am 09:57 AM

Well, it turns out that SVG's built-in animation features were never deprecated as planned. Sure, CSS and JavaScript are more than capable of carrying the load, but it's good to know that SMIL is not dead in the water as previously

'Pretty' is in the eye of the beholder'Pretty' is in the eye of the beholderApr 23, 2025 am 09:40 AM

Yay, let's jump for text-wrap: pretty landing in Safari Technology Preview! But beware that it's different from how it works in Chromium browsers.

CSS-Tricks Chronicles XLIIICSS-Tricks Chronicles XLIIIApr 23, 2025 am 09:35 AM

This CSS-Tricks update highlights significant progress in the Almanac, recent podcast appearances, a new CSS counters guide, and the addition of several new authors contributing valuable content.

Tailwind's @apply Feature is Better Than it SoundsTailwind's @apply Feature is Better Than it SoundsApr 23, 2025 am 09:23 AM

Most of the time, people showcase Tailwind's @apply feature with one of Tailwind's single-property utilities (which changes a single CSS declaration). When showcased this way, @apply doesn't sound promising at all. So obvio

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function