Last active
December 2, 2018 07:53
-
-
Save Offirmo/43226913a417d36781d7306b9034d107 to your computer and use it in GitHub Desktop.
BEM #css #frontend
This file contains 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
/* | |
https://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/ | |
http://bradfrost.com/blog/post/atomic-web-design/#atoms | |
zqsmm.qiniucdn.com/data/20110511083224/index.html | |
*/ | |
.block {} | |
.block__element {} | |
.block--modifier {} | |
.person {} | |
.person__hand {} | |
.person--female {} | |
.person--female__hand {} | |
.person__hand--left {} | |
.site-search {} /* Block */ | |
.site-search__field {} /* Element */ | |
.site-search--full {} /* Modifier */ | |
atoms -> molecules -> organisms -> templates -> pages | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment