1941075.html (301B)
1 <!DOCTYPE html> 2 <style> 3 .container { 4 position: relative; 5 width: 100px; 6 height: 100px; 7 background: red; 8 } 9 .abs { 10 width: 100px; 11 height: -moz-available; 12 background: green; 13 position: absolute; 14 inset: 0; 15 margin: auto; 16 } 17 </style> 18 <div class="container"> 19 <div class="abs"></div> 20 </div>