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