Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-break/grid/grid-lanes/row-grid-lanes-oof-fragmentation-009.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
Nested row grid-lanes OOF static positions with row gaps.
</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="../grid-item-oof-013-ref.html">
<p>Test passes if there is a filled multi-color square.</p>
<div style="columns: 2; height: 100px; width: 100px; column-gap: 0; column-fill: auto; background: yellow;">
<div style="position: relative; display: grid-lanes; grid-template-rows: 40px 100px 40px; row-gap: 10px;">
<div style="background: green; width: 50px;">
<div style="position: absolute; background: teal; grid-row-start: 2; inset: 0;"></div>
<div style="position: absolute; background: orange; grid-row-start: 3; inset: 0;"></div>
</div>
</div>
</div>