Answer the question
In order to leave comments, you need to log in
Is it possible to leave such code following BEM?
<aside class="aside">
<div class="aside__logo">
<div class="img">
<img src="logo.png" alt="logo" />
</div>
<div class="title">Заголовок</div>
<div class="ico">Иконка</div>
</div>
</aside>
Answer the question
In order to leave comments, you need to log in
It is not entirely clear what you want to get in the end and what exactly is your logo (a picture or the entire contents of the logo), it is advisable to consider such examples with a layout, and not guess on coffee grounds, but nevertheless, usually a logo is a separate block that can be mix depending on the environment, as an option like this:
<aside class="aside">
<div class="aside__logo logo">
<div class="logo__pic">
<img src="logo.png" alt="logo" class="logo__img" />
</div>
<div class="logo__title">Заголовок</div>
<div class="logo__ico">Иконка</div>
</div>
</aside>
Also as an option:
<aside class="aside">
<div class="aside-logo">
<div class="aside-logo__item">
<img class="aside-logo__img" src="logo.png" alt="logo" />
</div>
<div class="aside-logo__title">Заголовок</div>
<div class="aside-logo__ico">Иконка</div>
</div>
</aside>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question