flexbox-definite-sizes-006.html (651B)
1 <!doctype html> 2 <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org"> 3 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-stretch"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 5 <meta name="assert" content="Item stretches to row flexbox's height when the row flexbox has a definite height but is a child of a column flexbox with an indefinite height." /> 6 <p>Test passes if there is a filled green square.</p> 7 8 <div style="display: flex; flex-direction: column;"> 9 <div style="height: 100px; display: flex;"> 10 <div style="width: 100px; background: green;"></div> 11 </div> 12 </div>