fit-content-block-size-abspos.html (513B)
1 <!DOCTYPE html> 2 <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> 3 <link rel="help" href="https://drafts.csswg.org/css-sizing-4/#valdef-width-fit-content"> 4 <link rel="match" href="fit-content-block-size-fixedpos-ref.html"> 5 <style> 6 body { 7 overflow: hidden; 8 } 9 #container { 10 height: fit-content; 11 position: absolute; 12 top: 50%; 13 background-color: gold; 14 margin: auto; 15 bottom: 0; 16 } 17 </style> 18 <div id="container"> 19 <div style="height:90vh;width:50px;outline: 2px dotted red;"></div> 20 </div>