Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
<!DOCTYPE html> <html> <title>Auto-fit repeat tracks with auto size and auto/explicit spanning item placement</title> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <link rel="match" href="column-auto-repeat-auto-022-ref.html"> <style> .grid-lanes { display: grid-lanes; flow-tolerance: 0; grid-template-columns: repeat(4, 50px) repeat(auto-fit, auto) repeat(4, 50px); height: 200px; width: 500px; gap: 10px; } .grid-lanes > div { width: 50px; height: 100px; background-color: orange; } </style> <div class="grid-lanes"> <div style="grid-column: span 3; width: 150px;"></div> <div style="grid-column: -1;"></div> </div> </html>
<!DOCTYPE html> <html> <style> .grid { display: grid; grid-template-columns: repeat(8, 50px); height: 200px; width: 500px; gap: 10px; } .grid > div { width: 50px; height: 100px; background-color: orange; } </style> <div class="grid"> <div style="grid-column: span 3; width: 150px;"></div> <div style="grid-column: -1;"></div> </div> </html>