bem-site / bem-method

BEM — a methodology how to develop web projects applicable for any technology
http://bem.info
604 stars 177 forks source link

Modifier class search-form should be block class #819

Open alamenai opened 3 years ago

alamenai commented 3 years ago

Section

Guidelines for using modifiers

Code

<!-- Incorrect. The modified class `search-form` is missing -->
<form class="search-form_theme_islands">
    <input class="search-form__input">
    <button class="search-form__button">Search</button>
</form>

Description

In the comments, you mentioned that the missing class ( search-form ) is a modifier class while it's a block class.

Expected

<!-- Incorrect. The block class `search-form` is missing -->
<form class="search-form_theme_islands">
    <input class="search-form__input">
    <button class="search-form__button">Search</button>
</form>