Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>Auto repeater with minmax size.</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="../../../../../reference/ref-filled-green-100px-square-only.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<style>
.masonry {
display: masonry;
width: 100px;
grid-template-columns: repeat(auto-fill, minmax(50px, 25px));
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="masonry">
<div style="background: green; height: 50px; width: 100%;"></div>
<div style="background: green; height: 50px; width: 100%;"></div>
<div style="background: green; height: 50px; width: 100%;"></div>
<div style="background: green; height: 50px; width: 100%;"></div>
</div>