grid-container-fragmentation-011.html (826B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-grid-1/#pagination"> 3 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 4 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 5 <div style="background: red; position: relative; width: 100px; height: 100px; column-fill: auto; columns: 2; gap: 0;"> 6 <div style="background: green; display: grid; grid-template-columns: auto auto; height: 50px;"> 7 <div style="break-after: column;"></div> <!-- Should result in a column break after the grid container. --> 8 <div></div> 9 </div> 10 <div style="background: green; height: 50px;"></div> 11 <div style="background: green; height: 50px;"></div> 12 <div style="background: green; position: absolute; width: 50px; height: 50px; bottom: 0; left: 0;"></div> 13 </div>