Skip to content

Instantly share code, notes, and snippets.

@JanMalch
Created October 26, 2018 14:54
Show Gist options
  • Save JanMalch/e9a5fdc80a95645a6c43af4a229b87a1 to your computer and use it in GitHub Desktop.
Save JanMalch/e9a5fdc80a95645a6c43af4a229b87a1 to your computer and use it in GitHub Desktop.
Basic CSS flexbox utilities
.flex {
display: flex;
}
.inline-flex {
display: inline-flex;
}
.flex.align-center {
align-items: center;
}
.flex.justify-center {
justify-content: center;
}
.flex > .grow {
flex: 1;
}
/* more to come ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment