table-as-item-flex-cross-size.html (733B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#resolve-flexible-lengths"> 3 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 4 <meta name="assert" content="The table's main-axis (block-size) size is flex to consume the available space."> 5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 6 <div style="display: flex; flex-direction: column; width: 100px; height: 100px; background: red;"> 7 <table style="border-spacing: 0; flex-grow: 1;"> 8 <caption style="height: 10px; background: green;"></caption> 9 <caption style="height: 20px; background: green; caption-side: bottom;"></caption> 10 <td style="background: green;"></td> 11 </table> 12 </div>