grid-container-fragmentation-010.html (828B)
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; height: 50px;"></div> 7 <div style="background: green; display: grid; grid-template-columns: auto auto; height: 50px;"> 8 <div></div> 9 <div style="break-before: column;"></div> <!-- Should result in a column break before the grid container. --> 10 </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>