contain-inline-size-flexitem.html (711B)
1 <!DOCTYPE html> 2 <title>contain:inline-size on flexitem</title> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property"> 5 <link rel="help" href="https://drafts.csswg.org/css-contain-3/#containment-inline-size"> 6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 8 <div style="width:100px; height:100px; background:red;"> 9 <div style="display:flex;"> 10 <div style="contain:inline-size; flex-basis:100px; background:green;"> 11 <div style="width:300px; height:100px;"></div> 12 </div> 13 </div> 14 </div>