Skip to content

Instantly share code, notes, and snippets.

@mfyance
Last active March 7, 2018 16:42
Show Gist options
  • Save mfyance/0f3bd81cf8c420e23ea3cf9d39f387f1 to your computer and use it in GitHub Desktop.
Save mfyance/0f3bd81cf8c420e23ea3cf9d39f387f1 to your computer and use it in GitHub Desktop.
GRID - FLEXBOX
.grid__container {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin: 0 -10px 30px 0px;
}
.grid__item {
flex: 0 1 23%;
border: 2px dashed #ff7083;
margin: 1%;
padding: 15px;
border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment