Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<html>
<title>Auto repeat tracks with auto track sizes and percentage sized spanning children</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="row-auto-repeat-auto-003-ref.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.masonry {
display: masonry;
background: gray;
item-tolerance: 0;
masonry-direction: row;
grid-template-rows: repeat(auto-fill, auto);
width: 200px;
height: 360px;
font: 15px/1 Ahem;
}
.masonry > div {
width: min-content;
height: 75%;
}
</style>
<body>
<div class="masonry">
<div style="background: lightskyblue; grid-row: span 2;">
Number 1
</div>
<div style="background: lightcoral; grid-row: span 3;">
Number 2
</div>
<div style="background: lightgreen; grid-row: span 4;">
Number 3
</div>
<div style="background: lightpink; grid-row: span 2;">
Number 4
</div>
</div>
</body>
</html>