Skip to content

Instantly share code, notes, and snippets.

@tomwray13
Created February 14, 2020 03:53
Show Gist options
  • Save tomwray13/8f892d4cbdc079be743ee298cc32b6fd to your computer and use it in GitHub Desktop.
Save tomwray13/8f892d4cbdc079be743ee298cc32b6fd to your computer and use it in GitHub Desktop.
BEM wrappers & containers - Airbnb 1
<div class="..."> <!-- Wrapper class goes here -->
<div class="card">
<img class="card__img" src="..." alt="...">
<h4 class="card__subtitle">...</h4>
<p class="card__description">...</p>
<div class="card__rating">...</div>
</div>
<div class="card">...</div>
<div class="card">...</div>
<div class="card">...</div>
<div class="card">...</div>
</div>
<style>
.card {}
.card__img {}
.card__subtitle {}
.card__description {}
.card__rating {}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment