Skip to content

Instantly share code, notes, and snippets.

@spoike
Created April 19, 2014 08:53
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save spoike/11078400 to your computer and use it in GitHub Desktop.
Save spoike/11078400 to your computer and use it in GitHub Desktop.
Flexbox CSS Cheatsheet

Flexbox Cheatsheet

Flex Container

  • display: flex | inline-flex
  • flex-direction: row | row-reverse | column | column-reverse
  • flex-wrap: nowrap | wrap | wrap-reverse
  • justify-content: flex-start | flex-end | center | space-between | space-around
  • align-items: flex-start | flex-end | center | baseline | stretch
  • align-content: flex-start | flex-end | center | space-between | space-around | stretch

Flex Items

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment