Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-006.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE HTML>
<!--
     Any copyright is dedicated to the Public Domain.
-->
<html>
  <meta charset="utf-8">
  <title>CSS Grid Test: Masonry layout row auto-fill sizing</title>
  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
  <link rel="match" href="masonry-intrinsic-sizing-rows-006-ref.html">
  <style>
@import "support/masonry-intrinsic-sizing-visual.css";
grid {
  display: inline-masonry;
  masonry-direction: row;
  gap: 1px 2px;
  grid-template-rows: repeat(4,auto);
  border: 1px solid;
  padding: 0 1px 0 2px;
  vertical-align: top;
}
</style>
<body>
<grid title="max-height 5em"
      style="max-height:5em; grid-template-rows: repeat(auto-fill,1em);">
  <item>1 1</item>
  <item>2</item>
  <item>3</item>
  <item>4</item>
  <item>5 5</item>
</grid>
<grid title="min-height 4em"
      style="min-height:4em; grid-template-rows: repeat(auto-fill,1em);">
  <item>1 1</item>
  <item>2</item>
  <item>3</item>
  <item>4</item>
  <item>5 5</item>
</grid>
<grid title="height 5em"
      style="height:5em; grid-template-rows: repeat(auto-fill,1em);">
  <item>1 1</item>
  <item>2</item>
  <item>3</item>
  <item>4</item>
  <item>5 5</item>
</grid>