Skip to content

Instantly share code, notes, and snippets.

@jayhill90
Last active August 26, 2019 15:06
Show Gist options
  • Save jayhill90/3939062df77f5bb28aa6af7f277db5bb to your computer and use it in GitHub Desktop.
Save jayhill90/3939062df77f5bb28aa6af7f277db5bb to your computer and use it in GitHub Desktop.
Center divs with auto margins for container div.
.container {
margin-left: auto;
margin-right: auto;
position: relative;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.item {
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment