grid-item-fragmentation-037.html (879B)
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 <title>Tests that break-before:avoid on a grid-item is respected.</title> 5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 6 <div style="position: relative; width: 100px; height: 100px; columns: 2; column-gap: 0; column-fill: auto; background: red;"> 7 <div style="display: grid;"> 8 <div style="background: green; height: 50px;"></div> 9 <div style="background: green; height: 40px;"></div> 10 <div style="background: green; break-before: avoid; line-height: 0;"> 11 <span style="display: inline-block; width: 100%; height: 60px;"></span> 12 </div> 13 </div> 14 <div style="background: green; position: absolute; width: 50px; height: 50px; bottom: 0; left: 0;"></div> 15 </div>