invalid-content.html (369B)
1 <!DOCTYPE html> 2 <meta name="viewport" content="1200"> 3 <style> 4 html, body { 5 margin: 0; 6 width: 100%; 7 height: 100%; 8 scrollbar-width: none; 9 } 10 #container { 11 width: 980px; 12 position: relative; 13 } 14 #inner { 15 position: absolute; 16 top: 0; 17 left: 0; 18 width: 100px; 19 height: 100px; 20 background: green; 21 } 22 </style> 23 <div id="container"> 24 <div id="inner"></div> 25 </div>