Created
December 12, 2016 05:13
-
-
Save greyli/0f0cfedbfc7c132ed42f862f75e5f6ba to your computer and use it in GitHub Desktop.
Make a centered and responsive photo gallery.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="gallery"> | |
<img src=""> | |
<img src=""> | |
<img src=""> | |
<img src=""> | |
<img src=""> | |
<img src=""> | |
... | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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