remove-overflow-hidden-region-ref.html (300B)
1 <!DOCTYPE html> 2 <html> 3 <meta name="viewport" content="width=device-width, initial-scale=1"> 4 <style> 5 html { 6 overflow: hidden; 7 } 8 html, body { 9 margin: 0; 10 width: 100%; 11 height: 100%; 12 } 13 div { 14 position: absolute; 15 } 16 </style> 17 <div style="background: blue; width: 100%; height: 100%;"></div> 18 </html>