Skip to content

Instantly share code, notes, and snippets.

@clubrob
Last active March 21, 2018 15:21
Show Gist options
  • Save clubrob/1d2f2cabe7ece731114c74082733690b to your computer and use it in GitHub Desktop.
Save clubrob/1d2f2cabe7ece731114c74082733690b to your computer and use it in GitHub Desktop.
Super simple flexbox grid
.row {
display: flex;
justify-content: space-between;
}
.col20 { width: 18.999%; } //20% columns
.col30 { width: 28.999%; } //30% columns
.col40 { width: 38.999%; } //40% columns
.col50 { width: 48.999%; } //50% columns
.col60 { width: 58.999%; } //60% columns
.col70 { width: 68.999%; } //70% columns
.col80 { width: 78.999%; } //80% columns
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment