Created
September 26, 2017 09:54
-
-
Save Bizunow/9b7c108f7894d5e8cde7bb291ec1f253 to your computer and use it in GitHub Desktop.
[CSS Masonry] #css #html
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
.masonry { | |
column-count: 3; | |
column-gap: 1em; | |
} | |
.masonry .item { | |
background-color: #eee; | |
display: inline-block; | |
margin: 0 0 1em; | |
width: 100%; | |
} |
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
<div class="masonry"> | |
<img class="item"> | |
<img class="item"> | |
<img class="item"> | |
... | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
good