Skip to content

Instantly share code, notes, and snippets.

@greyli
Created December 12, 2016 05:13
Show Gist options
  • Save greyli/0f0cfedbfc7c132ed42f862f75e5f6ba to your computer and use it in GitHub Desktop.
Save greyli/0f0cfedbfc7c132ed42f862f75e5f6ba to your computer and use it in GitHub Desktop.
Make a centered and responsive photo gallery.
<div class="gallery">
<img src="">
<img src="">
<img src="">
<img src="">
<img src="">
<img src="">
...
</div>
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment