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