table-cell-expansion-010.html (847B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#fragmentation"> 3 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 4 <style> 5 table { border-spacing: 0; } 6 td { padding: 0; } 7 </style> 8 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 9 <div style="columns: 4; gap: 0; column-fill: balance; height: 100px; width: 100px; background: red;"> 10 <table style="background: green;"> 11 <tr> 12 <td> 13 <div style="height: 10px; width: 25px;"></div> 14 <div style="height: 10px; break-before: column;"></div> 15 <div style="height: 10px; break-before: column;"></div> 16 <div style="height: 10px; break-before: column;"></div> 17 </td> 18 </tr> 19 <tr> 20 <td> 21 <div style="height: 90px;"></div> 22 </td> 23 </tr> 24 </table> 25 </div>