Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Test: Subgrid contribution 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 {
background: green;
display: inline-grid;
grid-template-rows: 100px;
}
.subgrid {
width: 100px;
display: grid;
grid-template-rows: subgrid;
}
.w200 { width: 200px }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="grid">
<div class="subgrid">
<div class="w200"></div>
</div>
</div>