flex-minimum-width-flex-items-013.html (1401B)
1 <!DOCTYPE html> 2 <title>Flex transferred minimum width</title> 3 <link rel="author" title="dgrogan@chromium.org" href="mailto:dgrogan@chromium.org" /> 4 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#min-size-auto" /> 5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5663" /> 6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht" /> 7 <meta name="assert" content="content size suggestion of a replaced aspect-ratio item accounts for definition stretched cross size"> 8 9 <style> 10 #reference-overlapped-red { 11 position: absolute; 12 background-color: red; 13 width: 100px; 14 height: 100px; 15 z-index: -1; 16 } 17 </style> 18 19 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 20 21 <div id="reference-overlapped-red"></div> 22 <div style="width:100px; height: 50px; background: green;"></div> <!-- This just completes the green square. --> 23 <div style="display: flex; width: 0px; height: 50px;"> 24 <!-- 25 content size suggestion is 100px because the image has a stretched height of 50px. So min-content size of the image is 300x150/50 = 100. 26 specified size suggestion is 150px 27 transferred size suggestion is 100px 28 29 transferred size suggestion is ignored because there is a specified size. 30 31 So here the content-based minimum size is min(100px, 150px) = 100px 32 --> 33 <img src="support/300x150-green.png" style="width: 999px;"> 34 </div>