LEARN BEM: Block - Element Learn BEM: CSS Naming Convention

50,871 views

Published on

LEARN BEM: Block - Element - Modifier
BLOCK: btn
$150 SUBSCRIBE NOW
styles.css
/* Block */
.btn { styles here }
/* Elements: depend upon the block */
.btn__price { styles here }
.btn__text { styles here }
/* Modifier: change the style of the block */
.btn--important { styles here }
CSS
index.html
<a href="#" class="btn btn--important">
<span class="btn__price">$150</span>
<span class="btn__text">Subscribe now</span>
</a>
HTML

Published in: Internet
6 Comments
161 Likes
Statistics
Notes
No Downloads
Views
Total views
50,871
On SlideShare
0
From Embeds
0
Number of Embeds
688
Actions
Shares
0
Downloads
265
Comments
6
Likes
161
Embeds 0
No embeds

No notes for slide

×