1451168.html (903B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 html { 6 height:100%; 7 margin:0; 8 padding: 0; 9 } 10 body { 11 height:100%; 12 margin: 0; 13 padding: 0; 14 overflow:hidden; 15 position:relative; 16 left:0; 17 transform:translateX(320px); 18 } 19 nav { 20 display:block; 21 position:absolute; 22 top:0; 23 left:0; 24 bottom:auto; 25 width:280px; 26 height:100%; 27 z-index:1000; 28 transform:translateX(-320px); 29 } 30 31 .nav-menu-inner-container { 32 position:relative; 33 height:100%; 34 } 35 36 .nav-menu-scroll-pane { 37 bottom:100px; 38 overflow-y:scroll; 39 position:absolute; 40 top:0; 41 width:254px 42 } 43 </style> 44 </head> 45 46 <body> 47 <nav class="moz-global-nav-drawer"> 48 <div class="nav-menu-inner-container"> 49 <div class="nav-menu-scroll-pane"> 50 <div style="height: 5000px"> 51 Scroll here and look for the scrollbar 52 </div> 53 </div> 54 </div> 55 </nav> 56 </body></html>