Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title>CSS Grid Lanes Test: subgrid line names do not apply to non-subgrids (columns)</title>
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="column-line-names-011-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 style="display:inline-grid-lanes; grid-template-columns: subgrid [a] [b] [c] [d];">
<x style="grid-column: a / d">x</x>
</div>
<div style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);">
<div style="display:grid; grid:subgrid [c] [d] [d] [e] / auto;">
<x style="grid-column: c">x</x>
</div>
</div>
</body>
</html>