grid-item-infinite-expansion.html (565B)
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="columns: 2; width: 100px; gap: 0; background: red;"> 6 <div style="display: grid;"> 7 <!-- Don't try and expand this row - as we'll continually expand due to the %-based child. --> 8 <div style="min-height: 100px;"> 9 <div style="height: 200%; background: green;"></div> 10 </div> 11 </div> 12 </div>