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-003-mix2.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 column sizing - min-content</title>
  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
  <link rel="match" href="masonry-intrinsic-sizing-rows-003-mix2-ref.html">
  <style>
@import "support/masonry-intrinsic-sizing-visual.css";
grid {
  display: inline-masonry;
  masonry-direction: row;
  gap: 1px 2px;
  /* keep fixed values small enough for spanners to have an effect */
  grid-template-rows: 1.1ch auto 1.4ch 1fr;
  border: 1px solid;
  padding: 1px 0 2px 0;
  vertical-align: top;
  height: min-content;
}
item {
  /* allow for differing min-content and max-content sizes */
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
</style>
<body>
<section>
<grid title="Wider first item 2ch">
  <item style="height:2ch">1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item>5 5</item>
</grid>
<grid title="Wrapped last item 2ch">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:2ch">5 5</item>
</grid>
<grid title="Wrapped last item 2ch col 2">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:2ch; grid-row:2">5 5</item>
</grid>
<grid title="Last item 4ch col 2-3">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:4ch; grid-row:2/span 2">5 5</item>
</grid>
<grid title="Item col 2-3 + Item 5ch col 1-3">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="grid-row:2/span 2">5 5</item>
  <item style="height:5ch; grid-row:1/span 3">6</item>
</grid>
<grid title="Item 3ch col 2-3 + Item 5ch col 1-3">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:3ch; grid-row:2/span 2">5 5</item>
  <item style="height:5ch; grid-row:1/span 3">6</item>
</grid>
<grid title="Last item span 4">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="grid-row:span 4">5 5</item>
</grid>
<grid title="Last item 6ch span 4">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:6ch; grid-row:span 4">5 5</item>
</grid>
<grid title="Last item 6ch span 3">
  <item>1</item>
  <item>2 2</item>
  <item>3 3</item>
  <item>4</item>
  <item style="height:6ch; grid-row:span 3">5 5</item>
</grid>
</section>
</body>