scrollbars-in-half-height-content.html (373B)
1 <!DOCTYPE html> 2 <meta name="viewport" content="width=device-width,initial-scale=2"> 3 <!-- 4 This content height is 50% of the window height but it's scaled by 2x so that 5 there should be scrollbars. 6 --> 7 <style> 8 html, body { 9 margin: 0; 10 width: 100%; 11 height: 50%; 12 } 13 div { 14 background: green; 15 position: absolute; 16 width: 100%; 17 height: 50%; 18 } 19 </style> 20 <div></div>