bem-site / bem-forum-content-en

Content BEM forum for English speak users
3 stars 0 forks source link

In or out #22

Open SimonWpt opened 8 years ago

SimonWpt commented 8 years ago

The first example is strict bem, the second one less. Which of the following examples is more bullet-proofed (browser compatible, code readability, reusable etc.) :

<div class="block">
    <h1 class="block__headline">Headline</h1>
</div>

or

<div class="block">
    <div class="block__headline">
        <h1>Headline</h1>
    </div>
</div>
tadatuta commented 8 years ago

@SimonWpt I'd choose the first one

SimonWpt commented 8 years ago

@tadatuta Thank you.