Skip to content

Instantly share code, notes, and snippets.

@tomwray13
Last active February 14, 2020 04:07
Show Gist options
  • Save tomwray13/8399615547c38c7101d4026c1ea2b22a to your computer and use it in GitHub Desktop.
Save tomwray13/8399615547c38c7101d4026c1ea2b22a to your computer and use it in GitHub Desktop.
BEM wrappers & containers - Airbnb plus
<div class="grid grid--plus">
<div class="card">...</div>
<div class="card">...</div>
<div class="card">...</div>
</div>
<style>
.grid {
display: grid;
grid-column-gap: 1rem;
}
.grid--plus {
grid-template-columns: repeat(5, 1fr);
}
.card {}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment