contain-inline-size-legend.html (758B)
1 <!DOCTYPE html> 2 <title>contain:inline-size on legend</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="contain-inline-size-legend-ref.html"> 7 <p>There should be blue square (legend), and a yellow square below it (fieldset 8 content).</p> 9 <fieldset style="width:fit-content; min-width:0;"> 10 <legend style="contain:inline-size; border:solid blue; border-width:0 50px; padding:0; background:red;"> 11 <div style="width:500px; height:100px;"></div> 12 </legend> 13 <div style="height:100px; background:yellow;"></div> 14 </fieldset>