Last active
August 29, 2015 14:19
-
-
Save RinatMullayanov/546d78e93de931b6ddd4 to your computer and use it in GitHub Desktop.
BEM naming in CSS and HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.some-block {} /*block*/ | |
.some-block__element {} /*element*/ | |
.some-block_size_large {} /*modificator of block*/ | |
.some-block__element_size_large {} /*modificator of element*/ | |
/* | |
Block may contains another blocks and elements. | |
Element may contains another blocks and elements. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment