calc-size-min-max-sizes-004.html (628B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-values-5/#calc-size"> 3 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html"> 4 <p>Test passes if there is a filled green square.</p> 5 <div style="width: 0px;"> 6 <!-- The min-content, max-content size of this div should be: 100px, 120px respectively. --> 7 <div style="background: green; width: fit-content; height: 100px;"> 8 <div style="width: calc-size(fit-content, size + 80px);"> 9 <span style="display: inline-block; width: 20px;"></span><span style="display: inline-block; width: 20px;"></span> 10 </div> 11 </div> 12 </div>