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/column-auto-repeat-018.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>Auto-fit repeat tracks with fixed size and explicit item placement</title>
<link rel="match" href="column-auto-repeat-018-ref.html">
<link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com">
<style>
.grid-lanes {
display: grid-lanes;
background: gray;
item-tolerance: 0;
grid-template-columns: repeat(auto-fit, 100px);
height: 200px;
width: 500px;
}
.grid-lanes > div {
width: 100%;
height: 100px;
}
</style>
<body>
<div class="grid-lanes">
<div style="background: lightskyblue; grid-column: 1;">
Number 1
</div>
<div style="background: lightcoral; grid-column: 3;">
Number 2
</div>
<div style="background: lightgreen; grid-column: 5;">
Number 3
</div>
<div style="background: lightpink; grid-column: 1;">
Number 4
</div>
<div style="background: orange; grid-column: 3;">
Number 5
</div>
</div>
</body>
</html>