Skip to content

Instantly share code, notes, and snippets.

@lyonsun
Last active May 11, 2018 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lyonsun/73f78ed7f915cd76382521df3dd52501 to your computer and use it in GitHub Desktop.
Save lyonsun/73f78ed7f915cd76382521df3dd52501 to your computer and use it in GitHub Desktop.
simple and nice images grid layout using flex only
#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