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-009.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: subgrid in stacking axis does not inherit line names (columns)</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="match" href="column-line-names-009-ref.html">
<style>
html,body {
color:black; background-color:white; font:12px/1 monospace; padding:0; margin:0;
}
.grid-lanes > div { background: grey; grid-column:2 / span 2; }
x { background: silver; }
</style>
</head>
<body>
<div class="grid-lanes" style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);">
<div style="display:grid; grid:subgrid [a] [b] [c] / auto;">
<x style="grid-column: a">x</x>
</div>
</div>
</body>
</html>