dynamic-toolbar-fixed-top-1-ref.html (378B)
1 <!DOCTYPE HTML> 2 <html> 3 <meta name="viewport" content="width=device-width"> 4 <style> 5 html { 6 scrollbar-width: none; 7 } 8 #scrolled { 9 height: 2000px; 10 width: 100%; 11 } 12 #fixed { 13 width: 100%; 14 height: 200px; 15 position: fixed; 16 top: 0; 17 background: red; 18 margin-top: 50px; 19 } 20 </style> 21 <body> 22 <div id="scrolled"></div> 23 <div id="fixed"></div> 24 </body> 25 </html>