Skip to content

Instantly share code, notes, and snippets.

@hardiksondagar
Created April 5, 2017 11:13
Show Gist options
  • Save hardiksondagar/4c60e674bb04c88e226218c48f319427 to your computer and use it in GitHub Desktop.
Save hardiksondagar/4c60e674bb04c88e226218c48f319427 to your computer and use it in GitHub Desktop.
Vertically center a div
.flex-div {
display: flex;
justify-content: center;
align-items: center;
}
@media only screen and (max-width: 768px) {
.flex-div {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment