Created
January 28, 2014 07:23
-
-
Save chriskjaer/8663508 to your computer and use it in GitHub Desktop.
BEM Eksempel
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
<div class="human"> | |
<div class="human__head"></div> | |
<div class="human__arm"></div> | |
<div class="human__arm"></div> | |
<div class="human__body"></div> | |
<div class="human__leg"></div> | |
<div class="human__leg"></div> | |
</div> |
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
.human { | |
} | |
.human--developer { | |
fuel: 'coffee'; | |
} | |
.human--pirate { | |
profession: 'pirate stuff'; | |
} | |
.human__head { | |
} | |
.human__arm { | |
} | |
.human__body { | |
} | |
.human__leg { | |
} | |
.human__leg--wood { | |
material: "wood"; | |
} |
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
.human { | |
} | |
.human__head { | |
} | |
.human__arm { | |
} | |
.human__body { | |
} | |
.human__leg { | |
} |
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
<div class="human human--pirate"> | |
<div class="human__head"> | |
</div> | |
<div class="human__arm"></div> | |
<div class="human__arm"></div> | |
<div class="human__body"></div> | |
<div class="human__leg"></div> | |
<div class="human__leg human__leg--wood"></div> | |
</div> | |
<div class="human human--developer"> | |
<div class="human__head"> | |
</div> | |
<div class="human__arm"></div> | |
<div class="human__arm"></div> | |
<div class="human__body"></div> | |
<div class="human__leg"></div> | |
<div class="human__leg human__leg--wood"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment