flexbox_justifycontent-stretch.html (495B)
1 <!DOCTYPE html> 2 <title>justify-content:stretch behaves as justify-content:flex-start</title> 3 <link rel="help" href="https://issues.chromium.org/issues/395659796"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 5 <p>Test passes if there is a filled green square.</p> 6 <div style="width: 200px; height: 100px; display: flex; justify-content: stretch;"> 7 <div style="width: 50px; background: green;"></div> 8 <div style="width: 50px; background: green;"></div> 9 </div>