red-background-body-fully-covered-by-green-element.html (468B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=windows-1252" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 <style> 7 html { 8 scrollbar-width: none; 9 } 10 body { 11 background: red; 12 margin: 0; 13 } 14 .tall { 15 height: 600vh; 16 background: green; 17 } 18 </style> 19 </head> 20 <body> 21 <div class="tall"></div> 22 </body> 23 </html>