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/column-line-names-003.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: nested subgrid item using line names from grid-lanes (columns)</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="column-line-names-001-ref.html">
<style>
html,body {
color:black; background-color:white; font:24px/1 monospace; padding:0; margin:0;
}
.grid-lanes {
display: inline-grid-lanes;
grid-template-columns: [a] 50px 50px [a] 50px 50px [a];
padding: 20px 10px;
}
.subgrid {
display: grid;
grid: 50px / subgrid;
grid-column: 1 / span 4;
}
x { background: grey; }
</style>
</head>
<body>
<div class="grid-lanes">
<div class="subgrid">
<div class="subgrid" style="grid-column: 1 / span 3">
<x style="grid-column: span a / a -1"></x>
</div>
</div>
</div>
</body>
</html>