Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/alignment/grid-justify-content-end-001.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-grid-1/"> <link rel="help" href="https://drafts.csswg.org/css-align-3/#justify-content"> <link rel="match" href="grid-justify-content-end-001-ref.html"> <style> .grid { display: grid; width: 100px; height: 100px; grid-template-columns: 50px; grid-template-rows: 50px; justify-content: end; border: 10px solid black; } .item { width: 50px; height: 50px; grid-row: 1/2; background-color: green; } </style> <p>Test passes if the green box is at the top-right of the grid content area, inside the black border.</p> <div class="grid"> <div class="item"></div> </div>
/css/css-grid/alignment/grid-justify-content-end-001-ref.html
<!DOCTYPE html> <p>Test passes if the green box is at the top-right of the grid content area, inside the black border.</p> <div style="width: 100px; height: 100px; border: 10px solid black;"> <div style="width: 50px; height: 50px; margin-left: 50px; background-color: green;"></div> </div>