Skip to content

Instantly share code, notes, and snippets.

@joshfitzgerald
Last active February 7, 2018 22:19
Show Gist options
  • Save joshfitzgerald/974a5de684697efa07336dbafdeceafe to your computer and use it in GitHub Desktop.
Save joshfitzgerald/974a5de684697efa07336dbafdeceafe to your computer and use it in GitHub Desktop.
Center vertically and horizontally using CSS Flexbox
.middle {
display: flex;
flex-direction: row; /* sets main axis as horizontal */
justify-content: center; /* affects main axis - horizontal here */
align-items: center; /* affects cross axis - vertical here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment