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