desktop-mode-ref.html (394B)
1 <!DOCTYPE html> 2 <html> 3 <meta name="viewport" content="width=device-width"> 4 <style> 5 html { 6 height: 100%; 7 width: 100%; 8 } 9 body { 10 height: 2000px; 11 width: 200%; 12 margin: 0px; 13 padding: 0px; 14 } 15 div { 16 width: 20px; 17 height: 100%; 18 top: 0px; 19 background-color: green; 20 } 21 </style> 22 <div style="right: 0px; position: fixed;"></div> 23 <div style="right: 25px; position: absolute;"></div> 24 </html>