initial-scale-0_5-ref.html (361B)
1 <!DOCTYPE html> 2 <meta name="viewport" content="initial-scale=0.5,width=device-width"> 3 <style> 4 html, body { 5 margin: 0; 6 width: 100%; 7 height: 100%; 8 } 9 #container { 10 position: relative; 11 } 12 #inner { 13 position: absolute; 14 top: 0; 15 right: 0; 16 width: 100px; 17 height: 100px; 18 background: green; 19 } 20 </style> 21 <div id="container"> 22 <div id="inner"></div> 23 </div>