Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/alignment/row-justify-items-013.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Grid Lanes Test: `justify-items: end` with `fill-reverse track-reverse` in row direction</title> <link rel="author" title="Celeste Pan" href="mailto:celestepan@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-3/#alignment"> <link rel="match" href="row-justify-items-013-ref.html"> <style> html, body { color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0; } .grid-lanes { display: grid-lanes; grid-template-rows: repeat(3, 80px); width: 300px; gap: 5px; padding: 2px; margin: 5px; border: 1px solid; justify-items: end; } item { display: block; color: white; } </style> </head> <body> <div class="grid-lanes" style="grid-lanes-direction: row fill-reverse track-reverse;"> <item style="width: 40px; grid-row: span 2; background: #f4a0a0;">1</item> <item style="width: 60px; background: #2ca02c;">2</item> <item style="width: 50px; grid-row: span 3; background: #ff7f0e;">3</item> <item style="width: 30px; background: #ffbb78;">4</item> <item style="width: 60px; background: #aad4f5;">5</item> <item style="width: 40px; grid-row: span 2; background: #c5b0d5;">6</item> <item style="width: 50px; background: #98df8a;">7</item> </div> </body> </html>
/css/css-grid/grid-lanes/alignment/row-justify-items-013-ref.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> html, body { color: black; background-color: white; font: 16px/1 monospace; padding: 0; margin: 0; } .grid { display: grid; grid-template-rows: repeat(3, 80px); grid-template-columns: 1fr; width: 300px; gap: 5px; padding: 2px; margin: 5px; border: 1px solid; } item { display: block; color: white; } </style> </head> <body> <div class="grid" style="justify-items: end;"> <item style="grid-column: 1; grid-row: 2 / 4; width: 40px; background: #f4a0a0;">1</item> <item style="grid-column: 1; grid-row: 1; width: 60px; background: #2ca02c;">2</item> <item style="grid-column: 1; grid-row: 1 / 4; width: 50px; margin-right: 65px; background: #ff7f0e;">3</item> <item style="grid-column: 1; grid-row: 3; width: 30px; margin-right: 120px; background: #ffbb78;">4</item> <item style="grid-column: 1; grid-row: 2; width: 60px; margin-right: 120px; background: #aad4f5;">5</item> <item style="grid-column: 1; grid-row: 2 / 4; width: 40px; margin-right: 185px; background: #c5b0d5;">6</item> <item style="grid-column: 1; grid-row: 1; width: 50px; margin-right: 120px; background: #98df8a;">7</item> </div> </body> </html>