1
Masonry Layout Using Only CSS
.grid {
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}
.griditem {
display: inline-block;
width: 100%;
margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
.grid {
-moz-column-count: 1;
-webkit-column-count: 1;
column-count: 1;
}
}
Interserver | Standard & VPS Cloud Hosting | $2.50 /Month
Flexible VPS hosting platform to deploy your online projects.
Economical and balanced between processor cores, memory and storage
rated 1 times
(1)
(0)
comments: 0 / hits: 426
/ 2 years ago, tue, oct 19, 21, 09:00:53
More From
» CSS
Comments
There are no comments for this Snippet yet