Last active
August 17, 2021 07:55
-
-
Save AvgustPol/0cc6804717e742d746d65e4aca20822a to your computer and use it in GitHub Desktop.
BEM blocks
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
<!-- block "home" --> | |
<div class="home"> | |
<!-- nested block "title" --> | |
<div class="title"></div> | |
<!-- nested block "subtitle" --> | |
<div class="subtitle"></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
<div class="block-A"> | |
<div class="block-B"> | |
<div class="block-D"> | |
</div> | |
</div> | |
<div class="block-C"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment