Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<style>
.masonry {
display: grid;
background: gray;
item-tolerance: 0;
grid-template-columns: repeat(auto-fill, 1px);
width: auto;
height: auto;
}
.masonry > div {
width: 100%;
height: 100px;
}
</style>
<div class="masonry">
<div style="background: lightskyblue;"></div>
<div style="background: lightcoral;"></div>
<div style="background: lightgreen;"></div>
</div>
</html>