fit-content-block-size-fixedpos.html (481B)
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 #container { 7 height: fit-content; 8 position: fixed; 9 top: 50%; 10 background-color: gold; 11 margin: auto; 12 bottom: 0; 13 } 14 </style> 15 <div id="container"> 16 <div style="height:90vh;width:50px;outline: 2px dotted red;"></div> 17 </div>