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