I want to use the bootstrap mesh in BEM. To do this, I remade the bootstrap mesh using the BEM methodology. I use the BEM methodology only in css. It seems there are no violations when introducing the grid, but since I just started using this methodology, I want to hear the opinion of professionals, maybe there are any comments. I’ll say right away that I don’t want to use the bem components library, since it's easier for me to make up the elements myself. I didn't have to use the bem grid because so a lot of problems with its integration into the project. And here is the html code itself:
<div class="container"> <div class="container__row"> <div class="container__col container__col_md_4 container__col_xs_6">Блок 1</div> <div class="container__col container__col_md_4 container__col_xs_6">Блок 2</div> <div class="container__col container__col_md_4 container__col_xs_6">Блок 3</div> </div> </div> Those. the container block remained, it has a container__row element, and a required container__col element, since container__col _ ** _ * modifiers cannot be used independently, since From the point of view of the BEM methodology, the modifier cannot be used in isolation from the modified block or element.