Last active
May 11, 2018 08:50
-
-
Save lyonsun/73f78ed7f915cd76382521df3dd52501 to your computer and use it in GitHub Desktop.
simple and nice images grid layout using flex only
This file contains hidden or 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
#photos { | |
display: flex; | |
flex-wrap: wrap; | |
flex-direction: row; | |
} | |
#photos div { | |
flex: auto; | |
width: 150px; | |
margin: 5px; | |
border: 1px solid #ddd; | |
} | |
#photos div img { | |
width: 100%; | |
height: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment