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/tentative/track-sizing/auto-repeat/intrinsic-auto-repeat/column-auto-repeat-auto-033.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>Auto repeat tracks with auto track sizes mixed with fixed tracks and line names</title>
<link rel="help" href="https://drafts.csswg.org/css-grid-3">
<link rel="match" href="column-auto-repeat-auto-030-ref.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<style>
.grid-lanes {
display: grid-lanes;
background: gray;
flow-tolerance: 0;
grid-template-columns: [line-1] repeat(auto-fill, 100px auto) [line-2];
width: 500px;
height: 300px;
}
.grid-lanes > div {
width: 300px;
height: 100px;
grid-column: line-1 / line-2;
}
</style>
<body>
<div class="grid-lanes">
<div style="background: lightskyblue;">
Number 1
</div>
<div style="background: lightcoral;">
Number 2
</div>
</div>
</body>
</html>