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/grid-lanes/subgrid/grid-subgridded-to-grid-lanes/line-names/row-line-names-013.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: Clamping a subgrid's own grid-template-areas (rows)</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="../../../../../reference/ref-filled-green-100px-square.xht">
<style>
.grid-lanes {
background: red;
display: grid-lanes;
grid-template-rows: 100px 100px;
height: 100px;
width: 100px;
}
.subgrid {
display: grid;
grid-template-areas: "item item"
"item item";
grid-template-rows: subgrid;
}
.item {
background: green;
grid-area: item;
width: 100px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="grid-lanes">
<div class="subgrid">
<div class="item"></div>
</div>
</div>