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/subgrid/standalone-axis-size-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Test: Subgrid specified size on standalone axis</title>
<link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<style>
.grid {
display: grid;
grid-template-rows: 100px;
}
.subgrid {
display: grid;
width: min-content;
grid-template: subgrid / 20% 30%;
}
.w100 { width: 100px }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="grid">
<div class="subgrid">
<div style="background: green"><div class="w100"></div></div>
<div style="background: green"><div class="w100"></div></div>
</div>
</div>