Created
October 20, 2015 00:33
-
-
Save faizanayubi/c0ecfc71571ddae53e05 to your computer and use it in GitHub Desktop.
Fluid Layout - Masonry Layout
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 id="container" class="cols"> | |
<div class="box one"></div> | |
<div class="box two"></div> | |
<div class="box one"></div> | |
<div class="box three"></div> | |
<div class="box two"></div> | |
<div class="box five"></div> | |
<div class="box one"></div> | |
<div class="box two"></div> | |
<div class="box six"></div> | |
<div class="box three"></div> | |
<div class="box two"></div> | |
</div> |
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
#container { | |
width: 100%; | |
max-width: 700px; | |
margin: 2em auto; | |
} | |
.cols { | |
-moz-column-count:3; | |
-moz-column-gap: 3%; | |
-moz-column-width: 30%; | |
-webkit-column-count:3; | |
-webkit-column-gap: 3%; | |
-webkit-column-width: 30%; | |
column-count: 3; | |
column-gap: 3%; | |
column-width: 30%; | |
} | |
.box { | |
margin-bottom: 20px; | |
} | |
.box.one { | |
height: 200px; | |
background-color: #d77575; | |
} | |
.box.two { | |
height: 300px; | |
background-color: #dcbc4c; | |
} | |
.box.three { | |
background-color: #a3ca3b; | |
height: 400px; | |
} | |
.box.four { | |
background-color: #3daee3; | |
height: 500px; | |
} | |
.box.five { | |
background-color: #bb8ed8; | |
height: 600px; | |
} | |
.box.six { | |
background-color: #baafb1; | |
height: 200px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment